-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.base.json
56 lines (56 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom", "esnext.asynciterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@fullerstack/agx-dto": ["libs/agx-dto/src/index.ts"],
"@fullerstack/agx-store": ["libs/agx-store/src/index.ts"],
"@fullerstack/agx-util": ["libs/agx-util/src/index.ts"],
"@fullerstack/assets": ["libs/agx-assets/src/index.ts"],
"@fullerstack/nax-ipware": ["libs/nax-ipware/src/index.ts"],
"@fullerstack/ngx-auth": ["libs/ngx-auth/src/index.ts"],
"@fullerstack/ngx-cachify": ["libs/ngx-cachify/src/index.ts"],
"@fullerstack/ngx-config": ["libs/ngx-config/src/index.ts"],
"@fullerstack/ngx-gql": ["libs/ngx-gql/src/index.ts"],
"@fullerstack/ngx-gql/operations": ["libs/ngx-gql/src/lib/graphql/index.gql.ts"],
"@fullerstack/ngx-gql/schema": ["libs/ngx-gql/src/lib/gql.schema.ts"],
"@fullerstack/ngx-gtag": ["libs/ngx-gtag/src/index.ts"],
"@fullerstack/ngx-i18n": ["libs/ngx-i18n/src/index.ts"],
"@fullerstack/ngx-i18n/mock": ["libs/ngx-i18n/src/mock.ts"],
"@fullerstack/ngx-jwt": ["libs/ngx-jwt/src/index.ts"],
"@fullerstack/ngx-layout": ["libs/ngx-layout/src/index.ts"],
"@fullerstack/ngx-logger": ["libs/ngx-logger/src/index.ts"],
"@fullerstack/ngx-material": ["libs/ngx-material/src/index.ts"],
"@fullerstack/ngx-menu": ["libs/ngx-menu/src/index.ts"],
"@fullerstack/ngx-msg": ["libs/ngx-msg/src/index.ts"],
"@fullerstack/ngx-shared": ["libs/ngx-shared/src/index.ts"],
"@fullerstack/ngx-store": ["libs/ngx-store/src/index.ts"],
"@fullerstack/ngx-subify": ["libs/ngx-subify/src/index.ts"],
"@fullerstack/ngx-system": ["libs/ngx-system/src/index.ts"],
"@fullerstack/ngx-uix": ["libs/ngx-uix/src/index.ts"],
"@fullerstack/ngx-user": ["libs/ngx-user/src/index.ts"],
"@fullerstack/nsx-auth": ["libs/nsx-auth/src/index.ts"],
"@fullerstack/nsx-common": ["libs/nsx-common/src/index.ts"],
"@fullerstack/nsx-i18n": ["libs/nsx-i18n/src/index.ts"],
"@fullerstack/nsx-mailer": ["libs/nsx-mailer/src/index.ts"],
"@fullerstack/nsx-prisma": ["libs/nsx-prisma/src/index.ts"],
"@fullerstack/nsx-prisma/mock": ["libs/nsx-prisma/src/mock.ts"],
"@fullerstack/nsx-system": ["libs/nsx-system/src/index.ts"],
"@fullerstack/nsx-user": ["libs/nsx-user/src/index.ts"],
"ts-essentials/*": ["node_modules/ts-essentials/*"]
}
},
"exclude": ["node_modules", "tmp", "dist", "coverage"]
}