1 | {
|
2 | "compilerOptions": {
|
3 | "alwaysStrict": true,
|
4 | "declaration": true,
|
5 | "emitDecoratorMetadata": true,
|
6 | "experimentalDecorators": true,
|
7 | "forceConsistentCasingInFileNames": true,
|
8 | "inlineSourceMap": true,
|
9 | "jsx": "react",
|
10 | "lib": ["dom", "scripthost", "es2015", "es2016", "es2017"],
|
11 | "module": "commonjs",
|
12 | "moduleResolution": "node",
|
13 | "newLine": "LF",
|
14 | "noFallthroughCasesInSwitch": true,
|
15 | "noImplicitReturns": true,
|
16 | "noUnusedLocals": true,
|
17 | "noUnusedParameters": false,
|
18 | "outDir": "dist",
|
19 | "pretty": true,
|
20 | "resolveJsonModule": true,
|
21 | "strictNullChecks": true,
|
22 | "target": "es5"
|
23 | },
|
24 | "include": [
|
25 | "src"
|
26 | ],
|
27 | "exclude": [
|
28 | "node_modules"
|
29 | ]
|
30 | }
|