forked from remnawave/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (38 loc) · 1.14 KB
/
Copy pathtsconfig.json
File metadata and controls
39 lines (38 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"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"]
}