bun_http_template/tsconfig.json
creations fdce8810cf
Some checks failed
Code quality checks / biome (push) Failing after 12s
Migrate to @atums/echo logger and improve project structure
2025-06-02 20:34:50 -04:00

39 lines
789 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@*": ["src/*"],
"@config/*": ["config/*"],
"@types/*": ["types/*"],
"@helpers/*": ["src/helpers/*"]
},
"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"
]
}