-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.base.json
70 lines (70 loc) · 4.37 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"downlevelIteration": true,
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"target": "ES2022",
"module": "ES2020",
"lib": ["ES2021", "dom"],
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": ["node_modules/@types"],
"useDefineForClassFields": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@dasch-swiss/jdnconvertiblecalendar": ["libs/jdnconvertiblecalendar/src/index.ts"],
"@dasch-swiss/jdnconvertiblecalendardateadapter": ["libs/jdnconvertiblecalendardateadapter/src/index.ts"],
"@dasch-swiss/shared/prelude": ["libs/shared/prelude/src/index.ts"],
"@dasch-swiss/vre/advanced-search": ["libs/vre/advanced-search/src/index.ts"],
"@dasch-swiss/vre/open-api": ["libs/vre/open-api/src/index.ts"],
"@dasch-swiss/vre/resource-editor/mathjax": ["libs/vre/resource-editor/mathjax/src/index.ts"],
"@dasch-swiss/vre/resource-editor/representations": ["libs/vre/resource-editor/representations/src/index.ts"],
"@dasch-swiss/vre/resource-editor/resource-editor": ["libs/vre/resource-editor/resource-editor/src/index.ts"],
"@dasch-swiss/vre/resource-editor/resource-properties": [
"libs/vre/resource-editor/resource-properties/src/index.ts"
],
"@dasch-swiss/vre/resource-editor/segment-support": ["libs/vre/resource-editor/segment-support/src/index.ts"],
"@dasch-swiss/vre/shared/app-analytics": ["libs/vre/shared/app-analytics/src/index.ts"],
"@dasch-swiss/vre/shared/app-api": ["libs/vre/shared/app-api/src/index.ts"],
"@dasch-swiss/vre/shared/app-common": ["libs/vre/shared/app-common/src/index.ts"],
"@dasch-swiss/vre/shared/app-common-to-move": ["libs/vre/shared/app-common-to-move/src/index.ts"],
"@dasch-swiss/vre/shared/app-config": ["libs/vre/shared/app-config/src/index.ts"],
"@dasch-swiss/vre/shared/app-date-picker": ["libs/vre/shared/app-date-picker/src/index.ts"],
"@dasch-swiss/vre/shared/app-error-handler": ["libs/vre/shared/app-error-handler/src/index.ts"],
"@dasch-swiss/vre/shared/app-help-page": ["libs/vre/shared/app-help-page/src/index.ts"],
"@dasch-swiss/vre/shared/app-helper-services": ["libs/vre/shared/app-helper-services/src/index.ts"],
"@dasch-swiss/vre/shared/app-list": ["libs/vre/shared/app-list/src/index.ts"],
"@dasch-swiss/vre/shared/app-logging": ["libs/vre/shared/app-logging/src/index.ts"],
"@dasch-swiss/vre/shared/app-notification": ["libs/vre/shared/app-notification/src/index.ts"],
"@dasch-swiss/vre/shared/app-ontology": ["libs/vre/shared/app-ontology/src/index.ts"],
"@dasch-swiss/vre/shared/app-ontology-classes": ["libs/vre/shared/app-ontology-classes/src/index.ts"],
"@dasch-swiss/vre/shared/app-progress-indicator": ["libs/vre/shared/app-progress-indicator/src/index.ts"],
"@dasch-swiss/vre/shared/app-project": ["libs/vre/shared/app-project/src/index.ts"],
"@dasch-swiss/vre/shared/app-property-form": ["libs/vre/shared/app-property-form/src/index.ts"],
"@dasch-swiss/vre/shared/app-search": ["libs/vre/shared/app-search/src/index.ts"],
"@dasch-swiss/vre/shared/app-session": ["libs/vre/shared/app-session/src/index.ts"],
"@dasch-swiss/vre/shared/app-settings-page": ["libs/vre/shared/app-settings-page/src/index.ts"],
"@dasch-swiss/vre/shared/app-state": ["libs/vre/shared/app-state/src/index.ts"],
"@dasch-swiss/vre/shared/app-state-service": ["libs/vre/shared/app-state-service/src/index.ts"],
"@dasch-swiss/vre/shared/app-string-literal": ["libs/vre/shared/app-string-literal/src/index.ts"],
"@dasch-swiss/vre/shared/app-system": ["libs/vre/shared/app-system/src/index.ts"],
"@dasch-swiss/vre/shared/app-ui": ["libs/vre/shared/app-ui/src/index.ts"],
"@dasch-swiss/vre/shared/app-user": ["libs/vre/shared/app-user/src/index.ts"],
"@dasch-swiss/vre/shared/assets/status-msg": ["libs/vre/shared/assets/status-msg/src/index.ts"],
"@dasch-swiss/vre/shared/open-api": ["libs/vre/shared/open-api/src/index.ts"],
"@dsp-app/*": ["apps/dsp-app/*"]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"preserveWhitespaces": true,
"strictTemplate": true
},
"exclude": ["node_modules", "tmp"]
}