mirror of
https://github.com/remnawave/node.git
synced 2026-08-28 04:31:56 +00:00
Some checks failed
Build & Push Docker Image / Send TG message (push) Has been cancelled
Build & Push Docker Image / Build linux/amd64 (push) Has been cancelled
Build & Push Docker Image / Build linux/arm64 (push) Has been cancelled
Build & Push Docker Image / Merge & push manifest (push) Has been cancelled
Build & Push Docker Image / Send TG message-1 (push) Has been cancelled
Build & Push Docker Image / notify-on-error (push) Has been cancelled
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "esnext",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@common/*": ["./src/common/*"],
|
|
"@integration-modules/*": ["./src/integration-modules/*"],
|
|
"@modules/*": ["./src/modules/*"],
|
|
"@libs/contracts/*": ["./libs/contract/*"],
|
|
"@contract/*": ["./libs/contract/*"],
|
|
"@queue/*": ["./src/queue/*"],
|
|
"@scheduler/*": ["./src/scheduler/*"]
|
|
},
|
|
|
|
"types": ["@rspack/core/module"],
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": ["src/**/*", "@types/globals.d.ts"]
|
|
}
|