basic2/tsconfig.node.json

23 lines
484 B
JSON
Raw Permalink Normal View History

2022-09-26 00:21:50 +08:00
{
"compilerOptions": {
2024-09-21 13:26:00 +08:00
"target": "ES2022",
"lib": ["ES2023"],
"moduleDetection": "force",
2022-09-26 00:21:50 +08:00
"module": "ESNext",
2024-09-21 13:26:00 +08:00
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"isolatedModules": true,
2023-10-29 23:17:31 +08:00
"skipLibCheck": true
2022-09-26 00:21:50 +08:00
},
"include": [
"package.json",
"vite.config.ts",
"vite/**/*.ts"
]
}