-
Notifications
You must be signed in to change notification settings - Fork 275
/
tsconfig.json
35 lines (33 loc) · 942 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
33
34
35
{
"compilerOptions": {
"lib": ["ES2020", "DOM"],
"target": "ES2020",
"jsx": "react",
"module": "ES2020",
"esModuleInterop": true,
"moduleResolution": "Node",
"moduleDetection": "force",
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"allowJs": true,
"resolveJsonModule": true,
"strict": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"importHelpers": true,
"skipLibCheck": true,
"noEmitOnError": true,
"declaration": true,
"outDir": "./dist"
},
"include": ["./src/**/*"],
"exclude": ["./src/stories", "./src/mock-builders", "./src/**/__tests__/*"]
}