-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
32 lines (32 loc) · 929 Bytes
/
tsconfig.json
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
31
32
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": true,
"lib": ["DOM", "esnext"],
"jsx": "react",
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"importHelpers": true,
"incremental": true,
"isolatedModules": false,
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"declarationMap": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ESNext"
},
"exclude": ["node_modules", "**/node_modules", "test", "**/test"],
"include": ["**/*.d.ts", "**/*.ts", "**/*.tsx"]
}