@vortiquo/typescript-config 1.0.0 → 1.0.2
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/README.md +2 -2
- package/base.json +3 -3
- package/nextjs.json +1 -1
- package/node-library.json +1 -1
- package/package.json +1 -2
- package/react-library.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Strict, modern TypeScript configurations for professional projects.
|
|
|
8
8
|
## Features
|
|
9
9
|
|
|
10
10
|
- 🔒 **Strict by default** - Catches bugs at compile time
|
|
11
|
-
- 🚀 **Modern** -
|
|
11
|
+
- 🚀 **Modern** - ES2024 target, bundler module resolution
|
|
12
12
|
- 📦 **Ready-to-use presets** - Next.js, React, Node.js, NestJS
|
|
13
13
|
- 🎯 **Zero config** - Just extend and go
|
|
14
14
|
|
|
@@ -114,7 +114,7 @@ All configs extend from a strict base with:
|
|
|
114
114
|
- **Strict type checking** - `strict`, `noUncheckedIndexedAccess`,
|
|
115
115
|
`exactOptionalPropertyTypes`
|
|
116
116
|
- **Code quality** - `noUnusedLocals`, `noUnusedParameters`, `noImplicitReturns`
|
|
117
|
-
- **Modern output** -
|
|
117
|
+
- **Modern output** - ES2024 target, bundler module resolution
|
|
118
118
|
- **Best practices** - `verbatimModuleSyntax`, `isolatedModules`,
|
|
119
119
|
`forceConsistentCasingInFileNames`
|
|
120
120
|
|
package/base.json
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"resolveJsonModule": true,
|
|
7
7
|
"verbatimModuleSyntax": true,
|
|
8
8
|
|
|
9
|
-
"target": "
|
|
10
|
-
"module": "
|
|
9
|
+
"target": "ES2024",
|
|
10
|
+
"module": "ES2022",
|
|
11
11
|
"moduleResolution": "bundler",
|
|
12
|
-
"lib": ["
|
|
12
|
+
"lib": ["ES2024"],
|
|
13
13
|
|
|
14
14
|
"allowJs": false,
|
|
15
15
|
"moduleDetection": "force",
|
package/nextjs.json
CHANGED
package/node-library.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vortiquo/typescript-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Strict, modern TypeScript configurations for Next.js, React, Node.js, and NestJS projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Vortiquo <dev@vortiquo.com>",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"@commitlint/cli": "^20.2.0",
|
|
43
43
|
"@commitlint/config-conventional": "^20.2.0",
|
|
44
44
|
"@ls-lint/ls-lint": "^2.3.1",
|
|
45
|
-
"@next/eslint-plugin-next": "^16.1.0",
|
|
46
45
|
"@vortiquo/eslint-config": "^1.1.1",
|
|
47
46
|
"cz-conventional-changelog": "^3.3.0",
|
|
48
47
|
"eslint": "^9.39.2",
|
package/react-library.json
CHANGED
package/server.json
CHANGED