logger/tsconfig.json
2025-04-22 20:01:08 -04:00

38 lines
792 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@types/*": ["types/*"]
},
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"emitDeclarationOnly": false,
"noEmit": false,
"declaration": true,
"outDir": "./dist",
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src", "types"]
}