9d1beab2e1
- Upgrade typescript from 5.9.3 to 6.0.2 - Add explicit types: ['node'] to base tsconfig (TS6 breaking change) - Remove deprecated baseUrl from server tsconfig - All typecheck passing
29 lines
687 B
JSON
29 lines
687 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Base",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["ESNext"],
|
|
"module": "preserve",
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
|
|
"types": ["bun"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|