server/tsconfig.json
2024-05-28 14:59:49 -10:00

39 lines
1 KiB
JSON

{
"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,
"paths": {
"@/*": ["./utils/*"],
"~/*": ["./*"],
"+/*": ["./server/api/*"]
}
},
"include": [
"*.ts",
"*.d.ts",
"**/*.ts",
"**/*.d.ts",
"server/api/well-known/**/*.ts",
"packages/cli/index.mts"
]
}