-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
33 lines (33 loc) · 1.07 KB
/
tsconfig.base.json
File metadata and controls
33 lines (33 loc) · 1.07 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noPropertyAccessFromIndexSignature": false,
"baseUrl": ".",
"paths": {
"@crosspublic/backend/*": ["apps/backend/*"],
"@crosspublic/database/*": ["libraries/database/*"],
"@crosspublic/communication/*": ["apps/communication/*"],
"@crosspublic/helpers/*": ["libraries/helpers/*"],
"@crosspublic/validators/*": ["libraries/validators/*"],
"@crosspublic/panel/*": ["apps/panel/*"],
"@crosspublic/tenants/*": ["apps/tenants/*"],
"@crosspublic/marketing/*": ["apps/marketing/*"],
"@crosspublic/docs/*": ["apps/docs/*"],
},
"resolveJsonModule": true
},
"exclude": ["node_modules", "tmp"]
}