db-backup-tool/backend/tsconfig.json

28 lines
635 B
JSON
Raw Permalink Normal View History

2024-05-10 09:43:18 +07:00
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
2024-05-12 06:00:04 +07:00
"noPropertyAccessFromIndexSignature": false
2024-05-10 09:43:18 +07:00
}
}