@vortiquo/typescript-config 1.0.1 → 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 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** - ES2025 target, bundler module resolution
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** - ES2025 target, bundler module resolution
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": "ES2025",
10
- "module": "ES2025",
9
+ "target": "ES2024",
10
+ "module": "ES2022",
11
11
  "moduleResolution": "bundler",
12
- "lib": ["ES2025"],
12
+ "lib": ["ES2024"],
13
13
 
14
14
  "allowJs": false,
15
15
  "moduleDetection": "force",
package/nextjs.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "noEmit": true,
8
8
  "allowJs": false,
9
9
 
10
- "lib": ["ES2025", "DOM", "DOM.Iterable"],
10
+ "lib": ["ES2024", "DOM", "DOM.Iterable"],
11
11
 
12
12
  "module": "ESNext",
13
13
  "moduleResolution": "Bundler",
package/node-library.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "module": "NodeNext",
6
6
  "moduleResolution": "NodeNext",
7
7
  "target": "ES2022",
8
- "lib": ["ES2025"],
8
+ "lib": ["ES2024"],
9
9
 
10
10
  "declaration": true,
11
11
  "declarationMap": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vortiquo/typescript-config",
3
- "version": "1.0.1",
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>",
@@ -3,7 +3,7 @@
3
3
  "extends": "./base.json",
4
4
  "compilerOptions": {
5
5
  "jsx": "react-jsx",
6
- "lib": ["ES2025", "DOM", "DOM.Iterable"],
6
+ "lib": ["ES2024", "DOM", "DOM.Iterable"],
7
7
 
8
8
  "declaration": true,
9
9
  "declarationMap": true,
package/server.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "extends": "./bases.json",
4
4
  "compilerOptions": {
5
- "lib": ["ES2025"],
6
- "target": "ES2025",
5
+ "lib": ["ES2024"],
6
+ "target": "ES2024",
7
7
  "module": "NodeNext",
8
8
  "moduleResolution": "NodeNext",
9
9