-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
55 lines (55 loc) · 1.96 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ispent/api/auth": ["libs/api/auth/src/index.ts"],
"@ispent/api/budgets": ["libs/api/budgets/src/index.ts"],
"@ispent/api/budgets-summary": ["libs/api/budgets-summary/src/index.ts"],
"@ispent/api/categories": ["libs/api/categories/src/index.ts"],
"@ispent/api/currencies": ["libs/api/currencies/src/index.ts"],
"@ispent/api/data-access": ["libs/api/data-access/src/index.ts"],
"@ispent/api/db": ["libs/api/db/src/index.ts"],
"@ispent/api/groups": ["libs/api/groups/src/index.ts"],
"@ispent/api/operations": ["libs/api/operations/src/index.ts"],
"@ispent/front/core": ["libs/front/core/src/index.ts"],
"@ispent/front/custom-material": [
"libs/front/custom-material/src/index.ts"
],
"@ispent/front/data-access": ["libs/front/data-access/src/index.ts"],
"@ispent/front/feature-budgets": [
"libs/front/feature-budgets/src/index.ts"
],
"@ispent/front/feature-operation-editor": [
"libs/front/feature-operation-editor/src/index.ts"
],
"@ispent/front/feature-overview": [
"libs/front/feature-overview/src/index.ts"
],
"@ispent/front/feature-sign-in": [
"libs/front/feature-sign-in/src/index.ts"
],
"@ispent/front/ui": ["libs/front/ui/src/index.ts"],
"@ispent/shared/data-access": ["libs/shared/data-access/src/index.ts"],
"@ispent/shared/utils": ["libs/shared/utils/src/index.ts"]
}
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"exclude": ["node_modules", "tmp"]
}