@vc-shell/ts-config 1.0.115

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 ADDED
@@ -0,0 +1,9 @@
1
+ ## 1.0.115 (2023-11-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * release-config and ts-config packages ([c901ebf](https://github.com/VirtoCommerce/vc-shell/commit/c901ebffa19569f647a351de484e3d807425b920))
7
+
8
+
9
+
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # ts-config
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@vc-shell/ts-config",
3
+ "version": "1.0.115",
4
+ "main": "./tsconfig.json",
5
+ "files": [
6
+ "tsconfig.json"
7
+ ],
8
+ "publishConfig": {
9
+ "access": "public",
10
+ "registry": "https://registry.npmjs.org/"
11
+ },
12
+ "packageManager": "yarn@3.6.4"
13
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,25 @@
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": "node",
13
+ "target": "ES2020",
14
+ "jsx": "preserve",
15
+ "isolatedModules": true,
16
+ "useDefineForClassFields": true,
17
+ "composite": true,
18
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
19
+ },
20
+ // Base excludes
21
+ "exclude": [
22
+ "node_modules",
23
+ "dist"
24
+ ]
25
+ }