-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 803 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 803 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.ts"],
"exclude": ["test/deep", "test/doctor", "node_modules"],
"compilerOptions": {
"target": "ES2023",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"types": ["node", "mocha"],
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"incremental": true,
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo",
"paths": {
"libnpmconfig": ["./src/types/libnpmconfig"],
"prompts-ncu": ["./src/types/prompts-ncu"]
}
}
}