xtablo-source/ui/tsconfig.node.json

27 lines
630 B
JSON
Raw Normal View History

2025-02-11 20:11:37 +00:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
2025-04-08 07:43:51 +00:00
"emitDeclarationOnly": true,
2025-02-11 20:11:37 +00:00
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
2025-04-08 07:43:51 +00:00
"noUncheckedSideEffectImports": true,
"composite": true
2025-02-11 20:11:37 +00:00
},
"include": ["vite.config.ts"]
}