-
-
Notifications
You must be signed in to change notification settings - Fork 270
/
tsconfig.base.json
43 lines (43 loc) · 2.01 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
{
"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": {
"@default/*": ["apps/conduit/src/app/*"],
"@env/*": ["apps/conduit/src/environments/*"],
"@realworld/*": ["libs/*"],
"@realworld/articles/article": ["libs/articles/feature-article/src/index.ts"],
"@realworld/articles/article-edit": ["libs/articles/feature-article-edit/src/index.ts"],
"@realworld/articles/articles-list": ["libs/articles/feature-articles-list/src/index.ts"],
"@realworld/articles/data-access": ["libs/articles/data-access/src/index.ts"],
"@realworld/auth/data-access": ["libs/auth/data-access/src/index.ts"],
"@realworld/auth/feature-auth": ["libs/auth/feature-auth/src/index.ts"],
"@realworld/core/api-types": ["libs/core/api-types/src/index.ts"],
"@realworld/core/data-access": ["libs/core/data-access/src/index.ts"],
"@realworld/core/error-handler": ["libs/core/error-handler/src/index.ts"],
"@realworld/core/forms": ["libs/core/forms/src/index.ts"],
"@realworld/core/http-client": ["libs/core/http-client/src/index.ts"],
"@realworld/home/feature-home": ["libs/home/feature-home/src/index.ts"],
"@realworld/profile/data-access": ["libs/profile/data-access/src/index.ts"],
"@realworld/profile/feature-profile": ["libs/profile/feature-profile/src/index.ts"],
"@realworld/settings/data-access": ["libs/settings/data-access/src/index.ts"],
"@realworld/settings/feature-settings": ["libs/settings/feature-settings/src/index.ts"],
"@realworld/ui/components": ["libs/ui/components/src/index.ts"]
},
"strict": true
},
"exclude": ["node_modules", "tmp"]
}