-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
35 lines (35 loc) · 1.2 KB
/
tsconfig.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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom", "esnext.asynciterable"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@bookapp-angular/*": ["libs/*"],
"@bookapp-angular/auth-core": ["libs/auth-core/src/index.ts"],
"@bookapp-angular/graphql": ["libs/graphql/src/index.ts"],
"@bookapp-angular/core": ["libs/core/src/index.ts"],
"@bookapp-angular/profile-core": ["libs/profile-core/src/index.ts"],
"@bookapp-angular/utils": ["libs/utils/src/index.ts"],
"@web/*": ["apps/web/src/app/*"],
"password-core/*": ["dist/password-core/*"],
"@bookapp-angular/password-core": ["libs/password-core/src/index.ts"],
"books-core/*": ["dist/books-core/*"],
"@bookapp-angular/books-core": ["libs/books-core/src/index.ts"],
"@bookapp-angular/history-core": ["libs/history-core/src/index.ts"]
}
},
"exclude": [
"node_modules",
"tmp",
"apps/mobile/node_modules",
"apps/mobile/platforms"
]
}