@storm-software/tsconfig 0.17.0 → 0.19.0

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,18 +1,33 @@
1
- ## 0.17.0 (2024-07-29)
1
+ ## 0.19.0 (2024-07-29)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- - **build-tools:** Update unbuild process to use the `tsconfck` package ([d0e4dbf6](https://github.com/storm-software/storm-ops/commit/d0e4dbf6))
6
+ - **tsconfig:** Update base TypeScript config to use `NodeNext` modules ([21f3d3f5](https://github.com/storm-software/storm-ops/commit/21f3d3f5))
7
7
 
8
- ## 0.16.0 (2024-07-29)
8
+ ## 0.18.0 (2024-07-29)
9
+
10
+
11
+ ### Features
12
+
13
+ - **tsconfig:** Updates around `base` and `core` tsconfig files ([18b553df](https://github.com/storm-software/storm-ops/commit/18b553df))
9
14
 
15
+ ## 0.17.0 (2024-07-29)
16
+
17
+ ### Features
18
+
19
+ - **build-tools:** Update unbuild process to use the `tsconfck` package
20
+ ([d0e4dbf6](https://github.com/storm-software/storm-ops/commit/d0e4dbf6))
21
+
22
+ ## 0.16.0 (2024-07-29)
10
23
 
11
24
  ### Features
12
25
 
13
- - **tsconfig:** Added an accurate package description ([b95b0987](https://github.com/storm-software/storm-ops/commit/b95b0987))
26
+ - **tsconfig:** Added an accurate package description
27
+ ([b95b0987](https://github.com/storm-software/storm-ops/commit/b95b0987))
14
28
 
15
- - **config:** Added the `brand2` and `brand3` color tokens ([58705631](https://github.com/storm-software/storm-ops/commit/58705631))
29
+ - **config:** Added the `brand2` and `brand3` color tokens
30
+ ([58705631](https://github.com/storm-software/storm-ops/commit/58705631))
16
31
 
17
32
  ## 0.15.0 (2024-07-29)
18
33
 
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
- [![Version](https://img.shields.io/badge/version-0.15.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.19.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/base.json CHANGED
@@ -3,15 +3,12 @@
3
3
  "display": "Storm Software - Base TypeScript Config",
4
4
  "compileOnSave": false,
5
5
  "compilerOptions": {
6
- "target": "esnext",
7
- "module": "esnext",
8
- "lib": ["ESNext"],
6
+ "target": "es2022",
7
+ "module": "NodeNext",
8
+ "lib": ["es2022"],
9
9
  "noLib": false,
10
10
  "moduleDetection": "force",
11
- "moduleResolution": "bundler",
12
11
  "pretty": true,
13
- "sourceMap": true,
14
- "incremental": true,
15
12
  "noImplicitReturns": true,
16
13
  "noUnusedLocals": true,
17
14
  "noUncheckedIndexedAccess": true,
@@ -28,6 +25,7 @@
28
25
  "emitDecoratorMetadata": true,
29
26
  "skipLibCheck": true,
30
27
  "skipDefaultLibCheck": true,
31
- "esModuleInterop": true
28
+ "esModuleInterop": true,
29
+ "preserveSymlinks": true
32
30
  }
33
31
  }
package/core.json CHANGED
@@ -2,15 +2,11 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Storm Software - Core TypeScript Config",
4
4
  "extends": "./base.json",
5
- "compileOnSave": false,
6
5
  "compilerOptions": {
7
6
  /* Base Options: */
8
7
  "allowJs": true,
8
+ "incremental": true,
9
9
  "isolatedModules": true,
10
- "verbatimModuleSyntax": true,
11
- /* Strictness */
12
- "noUncheckedIndexedAccess": true,
13
- "noImplicitOverride": true,
14
10
  /* If transpiling with TypeScript: */
15
11
  "sourceMap": true,
16
12
  /* AND if you're building for a library: */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/tsconfig",
3
- "version": "0.17.0",
3
+ "version": "0.19.0",
4
4
  "description": "⚡ A package containing shared `tsconfig.json` files used in various other repositories by Storm Software.",
5
5
  "repository": {
6
6
  "type": "github",