@storm-software/tsconfig 0.3.4 → 0.3.6
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 -6
- package/base.json +12 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,40 @@
|
|
|
1
|
-
## 0.3.
|
|
1
|
+
## 0.3.6 (2024-04-09)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
2
4
|
|
|
5
|
+
- **tsconfig:** Resolve invalid base tsconfig modules ([af07fcdb](https://github.com/storm-software/storm-ops/commit/af07fcdb))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Patrick Sullivan
|
|
10
|
+
|
|
11
|
+
## 0.3.5 (2024-04-09)
|
|
3
12
|
|
|
4
13
|
### 🩹 Fixes
|
|
5
14
|
|
|
6
|
-
- **build-tools:**
|
|
15
|
+
- **build-tools:** Updates to base tsconfig and build tools ([97648eac](https://github.com/storm-software/storm-ops/commit/97648eac))
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
7
18
|
|
|
19
|
+
- Patrick Sullivan
|
|
20
|
+
|
|
21
|
+
## 0.3.4 (2024-04-08)
|
|
8
22
|
|
|
9
|
-
###
|
|
23
|
+
### 🩹 Fixes
|
|
24
|
+
|
|
25
|
+
- **build-tools:** Resolved issue with module types used in build ([50a368d3](https://github.com/storm-software/storm-ops/commit/50a368d3))
|
|
26
|
+
|
|
27
|
+
### ❤️ Thank You
|
|
10
28
|
|
|
11
29
|
- Patrick Sullivan
|
|
12
30
|
|
|
13
31
|
## 0.3.3 (2024-04-08)
|
|
14
32
|
|
|
15
|
-
|
|
16
33
|
### 🩹 Fixes
|
|
17
34
|
|
|
18
35
|
- **build-tools:** Resolved issue with duplicate require definition ([63aa1d16](https://github.com/storm-software/storm-ops/commit/63aa1d16))
|
|
19
36
|
|
|
20
|
-
|
|
21
|
-
### ❤️ Thank You
|
|
37
|
+
### ❤️ Thank You
|
|
22
38
|
|
|
23
39
|
- Patrick Sullivan
|
|
24
40
|
|
package/base.json
CHANGED
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
"target": "esnext",
|
|
7
7
|
"module": "esnext",
|
|
8
|
-
"lib": ["
|
|
9
|
-
"
|
|
8
|
+
"lib": ["ESNext"],
|
|
9
|
+
"noLib": false,
|
|
10
|
+
"moduleDetection": "force",
|
|
10
11
|
"moduleResolution": "bundler",
|
|
12
|
+
"pretty": true,
|
|
11
13
|
"sourceMap": true,
|
|
12
14
|
"incremental": true,
|
|
13
15
|
"noImplicitReturns": true,
|
|
@@ -29,6 +31,13 @@
|
|
|
29
31
|
"skipDefaultLibCheck": true,
|
|
30
32
|
"esModuleInterop": true
|
|
31
33
|
},
|
|
32
|
-
"include": [
|
|
34
|
+
"include": [
|
|
35
|
+
"**/*.ts",
|
|
36
|
+
"**/*.js",
|
|
37
|
+
"**/*.tsx",
|
|
38
|
+
"**/*.jsx",
|
|
39
|
+
"**/*.d.ts",
|
|
40
|
+
"**/*.json"
|
|
41
|
+
],
|
|
33
42
|
"exclude": ["**/node_modules"]
|
|
34
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsconfig",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"keywords": [
|