@foray1010/tsconfig 12.0.0 → 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,12 @@
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
+
6
12
  ## [12.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.2...@foray1010/tsconfig@12.0.0) (2023-11-17)
7
13
 
8
14
  ### ⚠ BREAKING CHANGES
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": "12.0.0",
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": {
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "45c8e63f5eebfb9caec22faaf5b961154b924f50"
29
+ "gitHead": "e751b4ba48732b04545e8f4b99e682cf5ba74dab"
30
30
  }
@@ -16,8 +16,7 @@
16
16
  "resolveJsonModule": true,
17
17
  "skipLibCheck": true,
18
18
  "strict": true,
19
- // typescript 5.2 does not support ES2023 yet
20
- "target": "ES2022",
19
+ "target": "ES2023",
21
20
  "useDefineForClassFields": true,
22
21
  "verbatimModuleSyntax": true
23
22
  },