1 | {
|
2 | "compilerOptions": {
|
3 | "lib": ["dom", "dom.iterable", "esnext"],
|
4 | "outDir": "lib",
|
5 | "module": "commonjs",
|
6 | "target": "es5",
|
7 | "declaration": true,
|
8 | "sourceMap": false,
|
9 | "moduleResolution": "node",
|
10 | "isolatedModules": false,
|
11 | "importHelpers": true,
|
12 | "jsx": "react",
|
13 | "experimentalDecorators": true,
|
14 | "emitDecoratorMetadata": true,
|
15 | "removeComments": true,
|
16 | "skipLibCheck": true,
|
17 | "pretty": true,
|
18 | "strict": true,
|
19 | "strictPropertyInitialization": false,
|
20 | "noImplicitReturns": true,
|
21 | "noFallthroughCasesInSwitch": true,
|
22 | "suppressImplicitAnyIndexErrors": true,
|
23 | "noUnusedLocals": true,
|
24 | "forceConsistentCasingInFileNames": true
|
25 | }
|
26 | }
|