bun_http_template/tsconfig.json
creations c35b767b87
All checks were successful
Code quality checks / biome (push) Successful in 23s
move to #, move things to const, move types
2025-06-15 17:59:18 -04:00

27 lines
668 B
JSON

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