1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| {
| "compilerOptions": {
| "strictNullChecks": true,
| "noImplicitAny": true,
| "module": "CommonJS",
| "target": "ES2020",
| "allowJs": true,
| "allowSyntheticDefaultImports": true,
| "esModuleInterop": true,
| "experimentalDecorators": true,
| "noImplicitThis": true,
| "noImplicitReturns": true,
| "alwaysStrict": true,
| "noFallthroughCasesInSwitch": true,
| "noUnusedLocals": true,
| "noUnusedParameters": true,
| "strict": true,
| "strictPropertyInitialization": true,
| "lib": ["ES2020"],
| "typeRoots": [
| "./typings"
| ]
| },
| "include": [
| "./**/*.ts"
| ],
| "exclude": [
| "node_modules"
| ]
| }
|
|