generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.base.json
72 lines (72 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": [
"es2017",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@fundamental-styles/theming-ngx": [
"libs/fundamental-styles/index.ts"
],
"@fundamental-styles/theming-ngx/*": [
"libs/fundamental-styles/*"
],
"@fundamental-styles/theming-ngx/src/themes/*": [
"libs/fundamental-styles/src/themes/*"
],
"@ui5/library-one": [
"libs/library-one/src/index.ts"
],
"@ui5/library-one/library-two": [
"libs/library-one/library-two/src/index.ts"
],
"@ui5/theming-ngx": [
"libs/ui5-angular-theming/src/index.ts"
],
"@ui5/webcomponents-ngx": [
"libs/ui5-angular/index.ts"
],
"@ui5/webcomponents-ngx-generator": [
"libs/angular-generator/src/index.ts"
],
"@ui5/webcomponents-ngx/*": [
"libs/ui5-angular/*"
],
"@ui5/webcomponents-nx": [
"libs/webcomponents-nx/src/index.ts"
],
"@ui5/webcomponents-samples-parser": [
"libs/ui5-samples-parser/src/index.ts"
],
"@ui5/webcomponents-schema-parser": [
"libs/ui5-schema-parser/src/index.ts"
],
"@ui5/webcomponents-transformer": [
"libs/transformer/src/index.ts"
],
"@ui5/webcomponents-transformer-fs-commit": [
"libs/commit/fs-commit/src/index.ts"
]
},
"resolveJsonModule": true
},
"exclude": [
"node_modules",
"tmp"
]
}