-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 738 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 738 Bytes
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
{
"include": ["src", "test", "vite.config.mts"],
"exclude": ["test/deep", "test/doctor"],
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["es2022"],
"module": "nodenext",
"moduleResolution": "nodenext",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"paths": {
"libnpmconfig": ["./src/types/libnpmconfig"],
"prompts-ncu": ["./src/types/prompts-ncu"]
},
"resolveJsonModule": true,
"outDir": "./build",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2021"
}
}