@jmlweb/tsconfig-nextjs 1.1.3 → 1.1.5
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 +16 -0
- package/README.md +27 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @jmlweb/tsconfig-nextjs
|
|
2
2
|
|
|
3
|
+
## 1.1.5
|
|
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-react@1.0.4
|
|
10
|
+
|
|
11
|
+
## 1.1.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- beae5ae: Add trailing newlines to source files for consistency.
|
|
16
|
+
- Updated dependencies [beae5ae]
|
|
17
|
+
- @jmlweb/tsconfig-react@1.0.3
|
|
18
|
+
|
|
3
19
|
## 1.1.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
npm install --save-dev @jmlweb/tsconfig-nextjs typescript next @jmlweb/tsconfig-react @jmlweb/tsconfig-base
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
> 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
|
|
28
|
+
|
|
27
29
|
## 🚀 Quick Start
|
|
28
30
|
|
|
29
31
|
Create a `tsconfig.json` file in your Next.js project root:
|
|
@@ -287,11 +289,36 @@ This package requires the following peer dependencies:
|
|
|
287
289
|
|
|
288
290
|
## 🔗 Related Packages
|
|
289
291
|
|
|
292
|
+
### Internal Packages
|
|
293
|
+
|
|
290
294
|
- [`@jmlweb/tsconfig-react`](../tsconfig-react) - TypeScript configuration for React (extended by this package)
|
|
291
295
|
- [`@jmlweb/tsconfig-base`](../tsconfig-base) - Base TypeScript configuration
|
|
292
296
|
- [`@jmlweb/eslint-config-react`](../eslint-config-react) - ESLint configuration for React/Next.js projects
|
|
293
297
|
- [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
|
|
294
298
|
|
|
299
|
+
### External Tools
|
|
300
|
+
|
|
301
|
+
- [TypeScript](https://www.typescriptlang.org/) - Strongly typed programming language that builds on JavaScript
|
|
302
|
+
- [Next.js](https://nextjs.org/) - The React framework for production
|
|
303
|
+
- [React](https://react.dev/) - JavaScript library for building user interfaces
|
|
304
|
+
- [Turbopack](https://turbo.build/pack) - Incremental bundler optimized for JavaScript and TypeScript
|
|
305
|
+
|
|
306
|
+
## 🔄 Migration Guide
|
|
307
|
+
|
|
308
|
+
### Upgrading to a New Version
|
|
309
|
+
|
|
310
|
+
> **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
|
|
311
|
+
|
|
312
|
+
**No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
|
|
313
|
+
|
|
314
|
+
For version history, see the [Changelog](./CHANGELOG.md).
|
|
315
|
+
|
|
316
|
+
**Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
|
|
317
|
+
|
|
318
|
+
## 📜 Changelog
|
|
319
|
+
|
|
320
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
|
|
321
|
+
|
|
295
322
|
## 📄 License
|
|
296
323
|
|
|
297
324
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmlweb/tsconfig-nextjs",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "TypeScript configuration for Next.js applications with App Router and Pages Router support",
|
|
5
5
|
"main": "tsconfig.json",
|
|
6
6
|
"exports": {
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@jmlweb/tsconfig-react": "^1.0.1",
|
|
40
39
|
"next": ">=13.0.0",
|
|
41
|
-
"typescript": ">=5.0.0"
|
|
40
|
+
"typescript": ">=5.0.0",
|
|
41
|
+
"@jmlweb/tsconfig-react": "1.0.4"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {}
|
|
44
44
|
}
|