-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 819 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 819 Bytes
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
{
"compilerOptions": {
"alwaysStrict": true,
"module": "esnext",
"target": "es6",
"lib": ["dom", "es2019", "esnext"],
"jsx": "react-jsx",
"moduleResolution": "node",
"rootDir": ".",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"outDir": "./dist/",
"skipLibCheck": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"isolatedModules": true,
"noEmit": true
},
"exclude": ["node_modules", "build", "src/setupTests.tsx", "src/App.test.tsx", "config", "html"],
"include": ["./src/"]
}