bun_http_template/tsconfig.json
creations f6b3cf4c82
All checks were successful
Code quality checks / biome (push) Successful in 14s
random updates
2025-06-12 17:42:31 -04:00

28 lines
703 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@*": ["src/*"],
"@config": ["config/index.ts"]
},
"typeRoots": ["./types", "./node_modules/@types"],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"allowJs": false,
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src", "types"]
}