mosh-helpdesk/server/tsconfig.json

34 lines
766 B
JSON
Raw Permalink Normal View History

2026-02-09 18:55:29 +01:00
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"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,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
2026-02-17 18:45:46 +01:00
"noPropertyAccessFromIndexSignature": false,
"paths": {
"core/*": ["../core/*"]
}
2026-02-09 18:55:29 +01:00
}
}