veza/apps/web/tsconfig.node.json

27 lines
632 B
JSON
Raw Normal View History

{
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
2025-12-13 02:34:34 +00:00
"lib": [
"ES2023"
],
"module": "ESNext",
"skipLibCheck": false,
/* Bundler mode */
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": false,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
2025-12-13 02:34:34 +00:00
"include": [
"vite.config.ts"
]
}