-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.31 KB
/
tsconfig.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"allowJs": true,
"allowUnusedLabels": false,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "bundler",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedSideEffectImports": true,
"noUnusedParameters": false, // Let typescript-eslint handle this
"noUnusedLocals": false, // Let typescript-eslint handle this
"outDir": "lib",
"pretty": true,
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"inlineSourceMap": true,
"strict": true,
"target": "esnext",
"useDefineForClassFields": true
},
"compileOnSave": false,
"buildOnSave": false,
"exclude": [
"node_modules",
"dist",
"lib",
"coverage",
"build",
"scripts",
"test",
"**/*.test.tsx",
"**/*.test.ts",
"**/*.spec.tsx",
"**/*.spec.ts"
]
}