dal/tsconfig.json
2024-08-20 19:23:09 +02:00

29 lines
591 B
JSON

{
"files": [
"dal/index.ts",
"dal/SQLite.ts",
],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"allowJs": true,
// Bundler mode
"moduleResolution": "node",
"verbatimModuleSyntax": true,
"noEmit": false,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"outDir": "dist",
}
}