Files
cc-switch/tsconfig.json

26 lines
642 B
JSON
Raw Permalink Normal View History

2025-08-04 22:16:26 +08:00
{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2025-10-16 10:00:22 +08:00
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["vitest/globals"]
2025-08-04 22:16:26 +08:00
},
"include": ["src/**/*", "tests/**/*"],
2025-08-04 22:16:26 +08:00
"references": [{ "path": "./tsconfig.node.json" }]
}