0
|
1 {
|
|
2 "compilerOptions": {
|
|
3 "strict": true,
|
|
4 "noFallthroughCasesInSwitch": true,
|
|
5 "noImplicitAny": true,
|
|
6 "noImplicitReturns": true,
|
|
7 "noImplicitThis": true,
|
|
8 "strictFunctionTypes": true,
|
|
9 "strictNullChecks": true,
|
|
10 "strictPropertyInitialization": true,
|
|
11 "alwaysStrict": true,
|
|
12
|
|
13 "types": [],
|
|
14
|
|
15 "module": "ES6",
|
|
16 "target": "ES6",
|
|
17 "moduleResolution": "node",
|
|
18 "sourceMap": true,
|
|
19 "declaration": true,
|
|
20 "experimentalDecorators": true,
|
|
21 "allowJs": true,
|
|
22 "esModuleInterop": true,
|
|
23 "traceResolution": true,
|
|
24 // "allowSyntheticDefaultImports": true,
|
|
25 // "rootDir": ".",
|
|
26 // "outDir": "./build",
|
|
27 "baseUrl": ".",
|
|
28 // "emitDecoratorMetadata": true,
|
|
29 "lib": [ "es6", "dom", "ES2019.Object" ],
|
|
30 },
|
13
|
31 "include": ["./src"]
|
0
|
32 // "exclude": ["src/**/*.test.ts"]
|
|
33 }
|