cutt/tsconfig.node.json

27 lines
611 B
JSON
Raw Permalink Normal View History

2025-01-22 08:26:41 +01:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
2025-02-10 16:40:19 +01:00
"lib": [
"ES2023"
],
2025-01-22 08:26:41 +01:00
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
2025-02-10 16:40:19 +01:00
"include": [
"vite.config.ts"
]
2025-01-22 08:26:41 +01:00
}