-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
77 lines (77 loc) · 3.72 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
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
73
74
75
76
77
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"noUnusedLocals": true,
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
],
"paths": {
"@scion/workbench": [
"./dist/scion/workbench"
],
"@scion/workbench-client": [
"./dist/scion/workbench-client"
]
}
/*
* +============================================================================================================================+
* | ## PATH-OVERRIDE-FOR-DEVELOPMENT |
* | ## DO NOT ACTIVATE FOR PRODUCTION! |
* | |
* | To debug dependent modules, please uncomment lines accordingly. |
* | The most specific paths win, or the latter with equal specificity. |
* | |
* | ## To debug dependent SCION libraries: |
* | 1. Clone dependent repositories into a directory at the same level as the workbench checkout folder: |
* | ├── scion-workbench |
* | ├── scion-toolkit (git clone [email protected]:SchweizerischeBundesbahnen/scion-toolkit.git) |
* | ├── scion-microfrontend-platform (git clone [email protected]:SchweizerischeBundesbahnen/scion-microfrontend-platform.git) |
* | 2. Run `npm run copy-src` to copy their source into the `src-lib` folder. |
* +============================================================================================================================+
*/
// "paths": {
// "@scion/workbench": [
// "./projects/scion/workbench/src/public-api"
// ],
// "@scion/workbench-client": [
// "./projects/scion/workbench-client/src/public-api"
// ],
// // "@scion/toolkit/*": [
// // "./src-lib/@scion/toolkit/*/src/public_api"
// // ],
// // "@scion/components/*": [
// // "./src-lib/@scion/components/*/src/public_api"
// // ],
// // "@scion/components.internal/*": [
// // "./src-lib/@scion/components.internal/*/src/public_api"
// // ],
// // "@scion/microfrontend-platform": [
// // "./src-lib/@scion/microfrontend-platform/src/public-api"
// // ]
// }
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}