@storm-software/tsconfig 0.0.1 → 0.0.3
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 +23 -0
- package/README.md +1 -1
- package/{root.json → base.json} +2 -1
- package/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
## 0.0.3 (2024-02-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Dynamically load tsup module and resolve `testing-tools` type issues ([c1d51975](https://github.com/storm-software/storm-ops/commit/c1d51975))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 0.0.2 (2024-02-27)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Update all imports to `config-tools` in the package ([85202800](https://github.com/storm-software/storm-ops/commit/85202800))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
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.org" target="_blank">stormsoftware.org</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/{root.json → base.json}
RENAMED
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"emitDecoratorMetadata": true,
|
|
26
26
|
"skipLibCheck": true,
|
|
27
27
|
"skipDefaultLibCheck": true,
|
|
28
|
-
"esModuleInterop": true
|
|
28
|
+
"esModuleInterop": true,
|
|
29
|
+
"importsNotUsedAsValues": "remove"
|
|
29
30
|
},
|
|
30
31
|
"include": ["**/*.ts", "**/*.js", "**/*.tsx", "**/*.jsx", "**/*.d.ts", "**/*.json"],
|
|
31
32
|
"exclude": ["**/node_modules", "**/tmp"]
|
package/index.js
CHANGED
|
@@ -6,7 +6,7 @@ var __commonJS = (cb, mod) => function __require() {
|
|
|
6
6
|
// packages/tsconfig/src/index.ts
|
|
7
7
|
var require_src = __commonJS({
|
|
8
8
|
"packages/tsconfig/src/index.ts"(exports, module) {
|
|
9
|
-
module.exports = "./
|
|
9
|
+
module.exports = "./base.json";
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
export default require_src();
|
package/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export = "./
|
|
1
|
+
export = "./base.json";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsconfig",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
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": [
|
|
@@ -35,4 +35,4 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
}
|
|
38
|
-
}
|
|
38
|
+
}
|