server/tsconfig.json

41 lines
855 B
JSON
Raw Normal View History

2023-09-11 05:31:08 +02:00
{
"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,
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": [
"bun-types" // add Bun global
],
"paths": {
"@*": ["./utils/*"],
"~*": ["./*"],
"+*": ["./server/api/*"],
2023-09-12 22:48:10 +02:00
},
},
"include": [
"*.ts",
"*.vue",
2023-09-12 22:48:10 +02:00
"**/*.ts",
"**/*.vue",
2023-09-12 22:48:10 +02:00
"server/api/.well-known/**/*.ts"
]
2023-09-11 05:31:08 +02:00
}