@jmlweb/tsconfig-react 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 +8 -0
- package/README.md +28 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
npm install --save-dev @jmlweb/tsconfig-react typescript @jmlweb/tsconfig-base
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
> 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
|
|
27
|
+
|
|
26
28
|
## 🚀 Quick Start
|
|
27
29
|
|
|
28
30
|
Create a `tsconfig.json` file in your project root:
|
|
@@ -239,9 +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
247
|
- [`@jmlweb/eslint-config-react`](../eslint-config-react) - ESLint configuration for React libraries
|
|
244
248
|
- [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
|
|
249
|
+
- [`@jmlweb/vite-config`](../vite-config) - Vite configuration for React projects
|
|
250
|
+
|
|
251
|
+
### External Tools
|
|
252
|
+
|
|
253
|
+
- [TypeScript](https://www.typescriptlang.org/) - Strongly typed programming language that builds on JavaScript
|
|
254
|
+
- [React](https://react.dev/) - JavaScript library for building user interfaces
|
|
255
|
+
- [Vite](https://vite.dev/) - Build tool with first-class TypeScript support
|
|
256
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react) - Official React plugin for Vite
|
|
257
|
+
|
|
258
|
+
## 🔄 Migration Guide
|
|
259
|
+
|
|
260
|
+
### Upgrading to a New Version
|
|
261
|
+
|
|
262
|
+
> **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
|
|
263
|
+
|
|
264
|
+
**No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
|
|
265
|
+
|
|
266
|
+
For version history, see the [Changelog](./CHANGELOG.md).
|
|
267
|
+
|
|
268
|
+
**Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
|
|
269
|
+
|
|
270
|
+
## 📜 Changelog
|
|
271
|
+
|
|
272
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
|
|
245
273
|
|
|
246
274
|
## 📄 License
|
|
247
275
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmlweb/tsconfig-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "TypeScript configuration for React libraries with JSX support and modern defaults",
|
|
5
5
|
"main": "tsconfig.json",
|
|
6
6
|
"exports": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@jmlweb/tsconfig-base": "1.0.
|
|
38
|
+
"@jmlweb/tsconfig-base": "1.0.3"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {}
|
|
41
41
|
}
|