-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
46 lines (46 loc) · 1.82 KB
/
tsconfig.base.json
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
40
41
42
43
44
45
46
{
"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,
"strictNullChecks": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@goran/brand": ["libs/ui/brand/src/index.ts"],
"@goran/common": ["libs/shared/common/src/index.ts"],
"@goran/config": ["libs/shared/config/src/index.ts"],
"@goran/device-detector": [
"libs/generics/device-detector/src/index.ts"
],
"@goran/drizzle-data-access": [
"libs/data-access/drizzle/src/index.ts"
],
"@goran/ip-locator": ["libs/generics/ip-locator/src/index.ts"],
"@goran/mail": ["libs/generics/mail/src/index.ts"],
"@goran/security": ["libs/core/security/src/index.ts"],
"@goran/ui-common": ["libs/ui/common/src/index.ts"],
"@goran/ui-common/*": ["libs/libs/ui-common/src/*"],
"@goran/ui-components": ["libs/ui/components/src/index.ts"],
"@goran/ui-components/*": ["libs/libs/ui-components/src/*"],
"@goran/ui-module-auth": ["libs/ui/modules/auth/src/index.ts"],
"@goran/ui-module-auth/server": [
"libs/ui/modules/auth/src/server.ts"
],
"@goran/users": ["libs/core/users/src/index.ts"],
"@goran/utils": ["libs/shared/utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}