server/tsconfig.json

43 lines
907 B
JSON
Raw Normal View History

2023-09-11 05:31:08 +02:00
{
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
2023-09-11 05:31:08 +02:00
"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,
2023-10-16 20:50:10 +02:00
"emitDecoratorMetadata": false,
2023-09-11 05:31:08 +02:00
"experimentalDecorators": true,
"verbatimModuleSyntax": true,
2023-09-11 05:31:08 +02:00
"types": [
2024-03-13 09:10:32 +01:00
"bun-types", // add Bun global
2023-09-11 05:31:08 +02:00
],
"paths": {
"@*": ["./utils/*"],
"~*": ["./*"],
"+*": ["./server/api/*"],
2023-09-12 22:48:10 +02:00
},
},
"include": [
"*.ts",
2024-03-13 09:10:32 +01:00
"*.d.ts",
"*.vue",
2023-09-12 22:48:10 +02:00
"**/*.ts",
2024-03-13 09:10:32 +01:00
"**/*.d.ts",
"**/*.vue",
2024-03-13 09:10:32 +01:00
"server/api/.well-known/**/*.ts",
2023-09-12 22:48:10 +02:00
]
2023-09-11 05:31:08 +02:00
}