server/tsconfig.json
Jesse Wierzbinski 3c289dd3de Tweaks to test
2023-10-16 08:50:10 -10:00

37 lines
768 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"noImplicitAny": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"types": [
"bun-types" // add Bun global
],
"paths": {
"@*": ["./utils/*"],
"~*": ["./*"]
},
},
"include": [
"*.ts",
"**/*.ts",
"server/api/.well-known/**/*.ts"
]
}