-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
40 lines (37 loc) · 975 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
36
37
38
39
40
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext", "ES2020"],
/* "module": "nodenext", */
"skipLibCheck": true,
"sourceMap": true,
/* Bundler mode */
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
// "isolatedModules": true,
"jsx": "react-jsx",
"declaration": true,
"importHelpers": false,
"esModuleInterop": true,
"removeComments": false,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"noImplicitOverride": true,
/* Paths */
"baseUrl": ".",
"outDir": "dist",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}