@eui/tools 6.21.109 → 6.21.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/19.x/default/tsconfig.lib.json +9 -3
- package/scripts/csdr/cli/skeletons/package/frontend/19.x/default-sdlc/tsconfig.lib.json +9 -3
- package/scripts/csdr/cli/skeletons/package/frontend/19.x/participant-default/tsconfig.lib.json +9 -3
- package/scripts/csdr/init/standalone/18.x/tsconfig.lib.standalone.json +9 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.110
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.110 (2025-08-26)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* set strict = true and strictTemplates = true. This is just a future proof change for new packages considering is coming soon: https://github.com/microsoft/TypeScript/issues/62333. In general, it helps developers to write better code and costs nothing for new packages. [EUI-11268](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-11268) ([f404b964](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f404b96410331d177b8c383ae33833eabf42a22c))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.109 (2025-08-26)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true
|
|
28
34
|
},
|
|
29
35
|
"exclude": [
|
|
30
36
|
"src/test.ts",
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true
|
|
28
34
|
},
|
|
29
35
|
"exclude": [
|
|
30
36
|
"src/test.ts",
|
package/scripts/csdr/cli/skeletons/package/frontend/19.x/participant-default/tsconfig.lib.json
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true
|
|
28
34
|
},
|
|
29
35
|
"exclude": [
|
|
30
36
|
"src/test.ts",
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true,
|
|
28
34
|
"compilationMode": "partial"
|
|
29
35
|
},
|
|
30
36
|
"exclude": [
|