mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
38 lines
800 B
JSON
38 lines
800 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,
|
|
"verbatimModuleSyntax": true,
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
],
|
|
"paths": {
|
|
"@*": ["./utils/*"],
|
|
"~*": ["./*"]
|
|
},
|
|
},
|
|
"include": [
|
|
"*.ts",
|
|
"**/*.ts",
|
|
"server/api/.well-known/**/*.ts"
|
|
]
|
|
}
|