@storm-software/tsconfig 0.35.8 → 0.35.10
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 +12 -0
- package/README.md +1 -1
- package/core.json +4 -2
- package/package.json +31 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.35.10 (2025-02-02)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous
|
|
4
|
+
|
|
5
|
+
- **monorepo:** Regenerate README markdown files ([a2b221881](https://github.com/storm-software/storm-ops/commit/a2b221881))
|
|
6
|
+
|
|
7
|
+
## 0.35.9 (2025-02-02)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **linting-tools:** Resolved issue with `cspell` configuration json ([e0ff0c9a](https://github.com/storm-software/storm-ops/commit/e0ff0c9a))
|
|
12
|
+
|
|
1
13
|
## 0.35.8 (2025-01-13)
|
|
2
14
|
|
|
3
15
|
### Continuous Integration
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/core.json
CHANGED
|
@@ -5,14 +5,16 @@
|
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
/* Base Options: */
|
|
7
7
|
"allowJs": true,
|
|
8
|
-
"incremental": true,
|
|
9
8
|
"isolatedModules": true,
|
|
9
|
+
"incremental": false,
|
|
10
|
+
"composite": false,
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
12
|
+
|
|
10
13
|
/* If transpiling with TypeScript: */
|
|
11
14
|
"sourceMap": true,
|
|
12
15
|
/* AND if you're building for a library: */
|
|
13
16
|
"declaration": true,
|
|
14
17
|
/* AND if you're building for a library in a monorepo: */
|
|
15
|
-
"composite": true,
|
|
16
18
|
"declarationMap": true
|
|
17
19
|
}
|
|
18
20
|
}
|
package/package.json
CHANGED
|
@@ -1 +1,31 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@storm-software/tsconfig",
|
|
3
|
+
"version": "0.35.10",
|
|
4
|
+
"description": "A comprehensive package containing shared TypeScript configuration files for various Storm Software projects.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "github",
|
|
7
|
+
"url": "https://github.com/storm-software/storm-ops",
|
|
8
|
+
"directory": "packages/tsconfig"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://stormsoftware.com",
|
|
11
|
+
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Storm Software",
|
|
14
|
+
"email": "contact@stormsoftware.com",
|
|
15
|
+
"url": "https://stormsoftware.com"
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"private": false,
|
|
19
|
+
"keywords": [
|
|
20
|
+
"monorepo",
|
|
21
|
+
"open-system",
|
|
22
|
+
"storm",
|
|
23
|
+
"storm-ops",
|
|
24
|
+
"storm-stack",
|
|
25
|
+
"stormstack",
|
|
26
|
+
"sullivanpj"
|
|
27
|
+
],
|
|
28
|
+
"dependencies": { "@total-typescript/ts-reset": "0.5.1" },
|
|
29
|
+
"devDependencies": { "@types/node": "^22.10.2" },
|
|
30
|
+
"publishConfig": { "access": "public" }
|
|
31
|
+
}
|