deface-api/tsconfig.json
2025-08-14 11:46:50 +03:00

30 lines
713 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"jsx": "react-jsx",
// Environment setup & latest features
"lib": ["ESNext"],
"moduleDetection": "force",
"module": "Preserve",
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"allowJs": true,
// Best practices
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noEmit": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
}
}