1 | {
|
2 | "compilerOptions": {
|
3 | "allowUnreachableCode": false,
|
4 | "allowUnusedLabels": false,
|
5 | "composite": true,
|
6 | "forceConsistentCasingInFileNames": true,
|
7 | "lib": ["es2018"],
|
8 | "module": "commonjs",
|
9 | "noEmitOnError": true,
|
10 | "noFallthroughCasesInSwitch": true,
|
11 | "noImplicitReturns": true,
|
12 | "pretty": true,
|
13 | "sourceMap": true,
|
14 | "stripInternal": true,
|
15 | "strict": true,
|
16 | "target": "es2018"
|
17 | },
|
18 | "exclude": ["node_modules"]
|
19 | }
|