1 | {
|
2 | "compilerOptions": {
|
3 | "target": "es5",
|
4 | "module": "commonjs",
|
5 | "moduleResolution": "node",
|
6 | "outDir": "dist",
|
7 | "isolatedModules": false,
|
8 | "experimentalDecorators": true,
|
9 | "emitDecoratorMetadata": true,
|
10 | "declaration": true,
|
11 | "noImplicitAny": true,
|
12 | "strictNullChecks": true,
|
13 | "noImplicitReturns": true,
|
14 | "noFallthroughCasesInSwitch": true,
|
15 | "noUnusedLocals": true,
|
16 | "noUnusedParameters": true,
|
17 | "removeComments": true,
|
18 | "noLib": false,
|
19 | "preserveConstEnums": true,
|
20 | "sourceMap": true,
|
21 | "typeRoots" : ["node_modules/@types"],
|
22 | },
|
23 | "include": [
|
24 | "**/*.ts",
|
25 | "node_modules/@types/**/*.d.ts"
|
26 | ],
|
27 | "exclude": [
|
28 | "node_modules",
|
29 | "example",
|
30 | "test/programs",
|
31 | "dist"
|
32 | ],
|
33 | "compileOnSave": true,
|
34 | "buildOnSave": false
|
35 | }
|