@vc-shell/ts-config 1.0.340 → 1.1.0-alpha.2
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/CHANGELOG.md +22 -0
- package/README.md +1 -1
- package/package.json +3 -2
- package/tsconfig.json +23 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [v1.1.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.340...vv1.1.0-alpha.2) (2025-02-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* partial redesign ([846e215](https://github.com/VirtoCommerce/vc-shell/commit/846e2152c6e48753622ca7cf3a71300323c99d51))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Reverts
|
|
10
|
+
|
|
11
|
+
* Revert "release: v1.1.0-alpha.2" ([80b0dc9](https://github.com/VirtoCommerce/vc-shell/commit/80b0dc99fdd318205f26bde81e6a49ab79214cb3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# [1.1.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.327...v1.1.0-alpha.1) (2024-11-13)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [1.0.340](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.339...v1.0.340) (2025-02-06)
|
|
2
20
|
|
|
3
21
|
|
|
@@ -50,6 +68,10 @@
|
|
|
50
68
|
|
|
51
69
|
|
|
52
70
|
|
|
71
|
+
# [1.1.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.326...v1.1.0-alpha.1) (2024-11-13)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
53
75
|
## [1.0.327](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.326...v1.0.327) (2024-11-12)
|
|
54
76
|
|
|
55
77
|
|
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# ts-config
|
|
1
|
+
# ts-config
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/ts-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.1.0-alpha.2",
|
|
4
4
|
"main": "./tsconfig.json",
|
|
5
5
|
"files": [
|
|
6
6
|
"tsconfig.json"
|
|
@@ -9,5 +9,6 @@
|
|
|
9
9
|
"access": "public",
|
|
10
10
|
"registry": "https://registry.npmjs.org/"
|
|
11
11
|
},
|
|
12
|
-
"packageManager": "yarn@4.0.2"
|
|
12
|
+
"packageManager": "yarn@4.0.2",
|
|
13
|
+
"stableVersion": "1.0.340"
|
|
13
14
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"declaration": true,
|
|
4
|
-
"declarationMap": true,
|
|
5
|
-
"sourceMap": true,
|
|
6
|
-
"importHelpers": true,
|
|
7
|
-
"resolveJsonModule": true,
|
|
8
|
-
"allowSyntheticDefaultImports": true,
|
|
9
|
-
"skipLibCheck": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"module": "esnext",
|
|
12
|
-
"moduleResolution": "Bundler",
|
|
13
|
-
"target": "es2020",
|
|
14
|
-
"jsx": "preserve",
|
|
15
|
-
"isolatedModules": true,
|
|
16
|
-
"useDefineForClassFields": true,
|
|
17
|
-
"composite": true,
|
|
18
|
-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
19
|
-
"strict": true,
|
|
20
|
-
},
|
|
21
|
-
// Base excludes
|
|
22
|
-
"exclude": ["node_modules", "dist"]
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"declaration": true,
|
|
4
|
+
"declarationMap": true,
|
|
5
|
+
"sourceMap": true,
|
|
6
|
+
"importHelpers": true,
|
|
7
|
+
"resolveJsonModule": true,
|
|
8
|
+
"allowSyntheticDefaultImports": true,
|
|
9
|
+
"skipLibCheck": true,
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"module": "esnext",
|
|
12
|
+
"moduleResolution": "Bundler",
|
|
13
|
+
"target": "es2020",
|
|
14
|
+
"jsx": "preserve",
|
|
15
|
+
"isolatedModules": true,
|
|
16
|
+
"useDefineForClassFields": true,
|
|
17
|
+
"composite": true,
|
|
18
|
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
19
|
+
"strict": true,
|
|
20
|
+
},
|
|
21
|
+
// Base excludes
|
|
22
|
+
"exclude": ["node_modules", "dist"]
|
|
23
|
+
}
|