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