@storm-software/tsconfig 0.35.8 → 0.35.9

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.35.9 (2025-02-02)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **linting-tools:** Resolved issue with `cspell` configuration json ([e0ff0c9a](https://github.com/storm-software/storm-ops/commit/e0ff0c9a))
6
+
1
7
  ## 0.35.8 (2025-01-13)
2
8
 
3
9
  ### Continuous Integration
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
- {"name":"@storm-software/tsconfig","version":"0.35.8","description":"A comprehensive package containing shared TypeScript configuration files for various Storm Software projects.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/tsconfig"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"license":"Apache-2.0","private":false,"keywords":["monorepo","open-system","storm","storm-ops","storm-stack","stormstack","sullivanpj"],"dependencies":{"@total-typescript/ts-reset":"0.5.1"},"devDependencies":{"@types/node":"^22.10.2"},"publishConfig":{"access":"public"}}
1
+ {
2
+ "name": "@storm-software/tsconfig",
3
+ "version": "0.35.9",
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
+ }