-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (35 loc) · 1.15 KB
/
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
41
{
"compilerOptions": {
// Project options
"outDir": "./dist/",
"target": "ES2020",
"module": "ESNEXT", // forced by roolup typescript plugin
"importHelpers": true, // forced by roolup typescript plugin
"noEmit": false, // forced by roolup typescript plugin
// Module resolution
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"resolveJsonModule": true,
"moduleResolution": "node", // forced by roolup typescript plugin
// Type checking
"skipDefaultLibCheck": true,
"skipLibCheck": true,
// Code quality
"strict": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
// Watch options
"noEmitHelpers": false, // forced by roolup typescript plugin
"noResolve": false // forced by roolup typescript plugin
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
}