@storm-software/tsconfig 0.3.3 → 0.3.5
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 +24 -0
- package/README.md +1 -1
- package/base.json +12 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 0.3.5 (2024-04-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **build-tools:** Updates to base tsconfig and build tools ([97648eac](https://github.com/storm-software/storm-ops/commit/97648eac))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 0.3.4 (2024-04-08)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **build-tools:** Resolved issue with module types used in build ([50a368d3](https://github.com/storm-software/storm-ops/commit/50a368d3))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 0.3.3 (2024-04-08)
|
|
2
26
|
|
|
3
27
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
16
16
|
|
|
17
17
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
18
18
|
|
|
19
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
21
21
|
|
|
22
22
|
> [!IMPORTANT]
|
package/base.json
CHANGED
|
@@ -5,9 +5,10 @@
|
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
"target": "esnext",
|
|
7
7
|
"module": "esnext",
|
|
8
|
-
"lib": ["
|
|
9
|
-
"
|
|
10
|
-
"moduleResolution": "
|
|
8
|
+
"lib": ["ESNext"],
|
|
9
|
+
"noLib": false,
|
|
10
|
+
"moduleResolution": "nodenext",
|
|
11
|
+
"pretty": true,
|
|
11
12
|
"sourceMap": true,
|
|
12
13
|
"incremental": true,
|
|
13
14
|
"noImplicitReturns": true,
|
|
@@ -29,6 +30,13 @@
|
|
|
29
30
|
"skipDefaultLibCheck": true,
|
|
30
31
|
"esModuleInterop": true
|
|
31
32
|
},
|
|
32
|
-
"include": [
|
|
33
|
+
"include": [
|
|
34
|
+
"**/*.ts",
|
|
35
|
+
"**/*.js",
|
|
36
|
+
"**/*.tsx",
|
|
37
|
+
"**/*.jsx",
|
|
38
|
+
"**/*.d.ts",
|
|
39
|
+
"**/*.json"
|
|
40
|
+
],
|
|
33
41
|
"exclude": ["**/node_modules"]
|
|
34
42
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsconfig",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
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": [
|