server/tsconfig.json

41 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2023-09-11 05:31:08 +02:00
{
2024-04-07 07:30:49 +02:00
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"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,
"verbatimModuleSyntax": true,
"types": [
"bun-types" // add Bun global
],
"paths": {
"@*": ["./utils/*"],
"~*": ["./*"],
"+*": ["./server/api/*"]
}
},
"include": [
"*.ts",
"*.d.ts",
"**/*.ts",
"**/*.d.ts",
2024-04-10 05:45:19 +02:00
"server/api/well-known/**/*.ts"
2024-04-07 07:30:49 +02:00
]
2023-09-11 05:31:08 +02:00
}