forked from Sage/jsurl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
38 lines (32 loc) · 834 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
{
"compilerOptions": {
// Code generation, not actually used
"target": "ES2020",
"module": "ES2020",
"incremental": true,
"isolatedModules": true,
"outDir": "tmp",
"noEmit": true,
// Available types
"lib": ["ES2021", "DOM"],
"types": ["vite/client"],
// Module resolution
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
// Strictness
"strict": true,
"noImplicitAny": false,
"allowImportingTsExtensions": true,
// Check JS files too
"allowJs": true,
"checkJs": true,
// Make TS lots faster by skipping lib checks
"skipLibCheck": true
// Uncomment for more details in errors
// "extendedDiagnostics": true,
// "noErrorTruncation": true
},
"exclude": ["node_modules", "dist", "tmp", "coverage"]
}