@jmlweb/tsconfig-node 1.0.3 → 1.0.4

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,5 +1,13 @@
1
1
  # @jmlweb/tsconfig-node
2
2
 
3
+ ## 1.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 6b73301: Add changelog section with link to CHANGELOG.md in package READMEs
8
+ - Updated dependencies [6b73301]
9
+ - @jmlweb/tsconfig-base@1.0.3
10
+
3
11
  ## 1.0.3
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -21,6 +21,8 @@
21
21
  npm install --save-dev @jmlweb/tsconfig-node typescript @jmlweb/tsconfig-base
22
22
  ```
23
23
 
24
+ > 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
25
+
24
26
  ## 🚀 Quick Start
25
27
 
26
28
  Create a `tsconfig.json` file in your project root:
@@ -239,10 +241,35 @@ See real-world usage examples:
239
241
 
240
242
  ## 🔗 Related Packages
241
243
 
244
+ ### Internal Packages
245
+
242
246
  - [`@jmlweb/tsconfig-base`](../tsconfig-base) - Base TypeScript configuration (extended by this package)
243
- - [`@jmlweb/eslint-config-base`](../eslint-config-base) - ESLint configuration for TypeScript projects
247
+ - [`@jmlweb/eslint-config-node`](../eslint-config-node) - ESLint configuration for Node.js projects
244
248
  - [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
245
249
 
250
+ ### External Tools
251
+
252
+ - [TypeScript](https://www.typescriptlang.org/) - Strongly typed programming language that builds on JavaScript
253
+ - [Node.js](https://nodejs.org/) - JavaScript runtime built on Chrome's V8 engine
254
+ - [tsx](https://github.com/privatenumber/tsx) - TypeScript execute (ts-node alternative)
255
+ - [ts-node](https://typestrong.org/ts-node/) - TypeScript execution engine for Node.js
256
+
257
+ ## 🔄 Migration Guide
258
+
259
+ ### Upgrading to a New Version
260
+
261
+ > **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
262
+
263
+ **No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
264
+
265
+ For version history, see the [Changelog](./CHANGELOG.md).
266
+
267
+ **Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
268
+
269
+ ## 📜 Changelog
270
+
271
+ See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
272
+
246
273
  ## 📄 License
247
274
 
248
275
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlweb/tsconfig-node",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "TypeScript configuration for Node.js and CLI projects. Extends @jmlweb/tsconfig-base with Node.js-specific settings excluding DOM types.",
5
5
  "main": "tsconfig.json",
6
6
  "exports": {
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "peerDependencies": {
39
39
  "typescript": ">=5.0.0",
40
- "@jmlweb/tsconfig-base": "1.0.2"
40
+ "@jmlweb/tsconfig-base": "1.0.3"
41
41
  },
42
42
  "scripts": {}
43
43
  }