-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
43 lines (36 loc) · 919 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
41
42
43
{
"compilerOptions": {
// Code generation, not actually used
"target": "ES2017",
"module": "ES2022",
"incremental": true,
"isolatedModules": true,
"outDir": "tmp",
"noEmit": true,
// Available types
"lib": ["ES2021"],
"types": ["vite/client", "vitest/globals"],
// Module resolution
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"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
"paths": {
"compiled-i18n": ["./src"],
"@i18n/*": ["./i18n/*"]
}
},
"exclude": ["node_modules", "dist", "tmp", "coverage"]
}