vite-templates/tsconfig.node.json

25 lines
510 B
JSON
Raw Normal View History

2024-09-30 09:25:00 -04:00
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2024-09-30 09:55:29 -04:00
"noFallthroughCasesInSwitch": true,
"types": ["vite/client"]
2024-09-30 09:25:00 -04:00
},
2024-09-30 10:13:11 -04:00
"include": ["vite.config.ts"]
2024-09-30 09:25:00 -04:00
}