mirror of
https://github.com/remnawave/backend.git
synced 2026-09-01 06:51:48 +00:00
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"exclude": ["node_modules", "dist", "samples"],
|
|
"include": ["src/**/*", "@types/prismaJson.d.ts", "@types/types.d.ts", "prisma/seed/**/*"],
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "esnext",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@common/*": ["./src/common/*"],
|
|
"@integration-modules/*": ["./src/integration-modules/*"],
|
|
"@modules/*": ["./src/modules/*"],
|
|
"@libs/contracts/*": ["./libs/contract/*"],
|
|
"@libs/subscription-page/*": ["./libs/subscription-page/*"],
|
|
"@contract/*": ["./libs/contract/*"],
|
|
"@queue/*": ["./src/queue/*"],
|
|
"@scheduler/*": ["./src/scheduler/*"]
|
|
},
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"useDefineForClassFields": true,
|
|
"types": ["@rspack/core/module"]
|
|
}
|
|
}
|