mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
41 lines
1.1 KiB
JSON
41 lines
1.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/*"],
|
|
"~/*": ["./*"],
|
|
"+/*": ["./api/*"]
|
|
},
|
|
"noUnusedLocals": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"*.ts",
|
|
"*.d.ts",
|
|
"**/*.ts",
|
|
"**/*.d.ts",
|
|
"api/well-known/**/*.ts",
|
|
"packages/cli/index.mts"
|
|
]
|
|
}
|