-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
38 lines (38 loc) · 1.75 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@stack-auth/admin/assets": ["libs/admin/assets/src/index.ts"],
"@stack-auth/admin/data-access-auth": ["libs/admin/data-access-auth/src/index.ts"],
"@stack-auth/admin/data-access-core": ["libs/admin/data-access-core/src/index.ts"],
"@stack-auth/admin/feature-about": ["libs/admin/feature-about/src/index.ts"],
"@stack-auth/admin/feature-auth": ["libs/admin/feature-auth/src/index.ts"],
"@stack-auth/admin/feature-core": ["libs/admin/feature-core/src/index.ts"],
"@stack-auth/admin/feature-dashboard": ["libs/admin/feature-dashboard/src/index.ts"],
"@stack-auth/admin/feature-shell": ["libs/admin/feature-shell/src/index.ts"],
"@stack-auth/admin/layout": ["libs/admin/layout/src/index.ts"],
"@stack-auth/admin/style": ["libs/admin/style/src/index.ts"],
"@stack-auth/admin/ui-form": ["libs/admin/ui-form/src/index.ts"],
"@stack-auth/api-app-module": ["apps/api/src/app/app.module.ts"],
"@stack-auth/api/data-access-auth": ["libs/api/data-access-auth/src/index.ts"],
"@stack-auth/api/data-access-core": ["libs/api/data-access-core/src/index.ts"],
"@stack-auth/api/feature-auth": ["libs/api/feature-auth/src/index.ts"],
"@stack-auth/api/feature-core": ["libs/api/feature-core/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}