1 | {
|
2 | "compilerOptions": {
|
3 | "target": "es2015",
|
4 | "lib": [
|
5 | "dom",
|
6 | "es2015"
|
7 | ],
|
8 | "module": "es2015",
|
9 | "outDir":"resource/",
|
10 | "moduleResolution": "node",
|
11 | "isolatedModules": false,
|
12 | "experimentalDecorators": true,
|
13 | "declaration": true,
|
14 | "noImplicitAny": false,
|
15 | "removeComments": true,
|
16 | "noUnusedLocals": true,
|
17 | "noFallthroughCasesInSwitch": true,
|
18 | "noUnusedParameters":true,
|
19 | "suppressImplicitAnyIndexErrors": true,
|
20 | "allowSyntheticDefaultImports": true,
|
21 | },
|
22 | "exclude": [
|
23 | "node_modules",
|
24 | "**/*/__test__/*"
|
25 | ],
|
26 | "include": [
|
27 | "src/**/*.ts"
|
28 | ],
|
29 | "compileOnSave": false
|
30 | } |
\ | No newline at end of file |