@foray1010/tsconfig 11.0.2 → 12.1.0

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
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [12.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@12.0.0...@foray1010/tsconfig@12.1.0) (2024-07-21)
7
+
8
+ ### Features
9
+
10
+ - **tsconfig:** set target to es2023 ([a134698](https://github.com/foray1010/common-presets/commit/a13469850612714a69acc3677e428d8778097dc3))
11
+
12
+ ## [12.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.2...@foray1010/tsconfig@12.0.0) (2023-11-17)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ - require node `^18.12.0 || >=20.9.0`
17
+
18
+ ### Features
19
+
20
+ - support es2023 ([0993c39](https://github.com/foray1010/common-presets/commit/0993c39c8a2f011b3f18e7796d69c54fc51b8eda))
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ - require node `^18.12.0 || >=20.9.0` ([e231508](https://github.com/foray1010/common-presets/commit/e231508673cefd6e4792083e4f15fd152446e32d))
25
+
6
26
  ## [11.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.1...@foray1010/tsconfig@11.0.2) (2023-08-30)
7
27
 
8
28
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/tsconfig",
4
- "version": "11.0.2",
4
+ "version": "12.1.0",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/tsconfig#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -21,10 +21,10 @@
21
21
  "typescript": "^5.0.2"
22
22
  },
23
23
  "engines": {
24
- "node": "^16.14.0 || >=18.12.0"
24
+ "node": "^18.12.0 || >=20.9.0"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "3d467bf363d8a14b4d4a0990b105dc0fef2b335a"
29
+ "gitHead": "e751b4ba48732b04545e8f4b99e682cf5ba74dab"
30
30
  }
@@ -4,7 +4,7 @@
4
4
  "esModuleInterop": true,
5
5
  "exactOptionalPropertyTypes": true,
6
6
  "incremental": true,
7
- "lib": ["ES2021"],
7
+ "lib": ["ES2023"],
8
8
  "module": "Node16",
9
9
  "moduleDetection": "force",
10
10
  "moduleResolution": "Node16",
@@ -16,7 +16,7 @@
16
16
  "resolveJsonModule": true,
17
17
  "skipLibCheck": true,
18
18
  "strict": true,
19
- "target": "ES2021",
19
+ "target": "ES2023",
20
20
  "useDefineForClassFields": true,
21
21
  "verbatimModuleSyntax": true
22
22
  },
@@ -4,6 +4,6 @@
4
4
  "compilerOptions": {
5
5
  "module": "ESNext",
6
6
  "moduleResolution": "Bundler",
7
- "lib": ["ES2021", "DOM", "DOM.Iterable"]
7
+ "lib": ["ES2023", "DOM", "DOM.Iterable"]
8
8
  }
9
9
  }