@foray1010/tsconfig 11.0.1 → 12.0.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.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.2...@foray1010/tsconfig@12.0.0) (2023-11-17)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - require node `^18.12.0 || >=20.9.0`
11
+
12
+ ### Features
13
+
14
+ - support es2023 ([0993c39](https://github.com/foray1010/common-presets/commit/0993c39c8a2f011b3f18e7796d69c54fc51b8eda))
15
+
16
+ ### Miscellaneous Chores
17
+
18
+ - require node `^18.12.0 || >=20.9.0` ([e231508](https://github.com/foray1010/common-presets/commit/e231508673cefd6e4792083e4f15fd152446e32d))
19
+
20
+ ## [11.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.1...@foray1010/tsconfig@11.0.2) (2023-08-30)
21
+
22
+ ### Bug Fixes
23
+
24
+ - **tsconfig:** use correct module resolution for typescript 5.2.2 ([57f4054](https://github.com/foray1010/common-presets/commit/57f4054a891301e5c09e49c24d38da90b7b6d386))
25
+
6
26
  ## [11.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.0...@foray1010/tsconfig@11.0.1) (2023-03-23)
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.1",
4
+ "version": "12.0.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": "b764b4d3bd39a74cd4b14916c820fe5640fe895c"
29
+ "gitHead": "45c8e63f5eebfb9caec22faaf5b961154b924f50"
30
30
  }
@@ -4,10 +4,10 @@
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
- "moduleResolution": "Node",
10
+ "moduleResolution": "Node16",
11
11
  "noEmit": true,
12
12
  "noEmitOnError": true,
13
13
  "noImplicitOverride": true,
@@ -16,7 +16,8 @@
16
16
  "resolveJsonModule": true,
17
17
  "skipLibCheck": true,
18
18
  "strict": true,
19
- "target": "ES2021",
19
+ // typescript 5.2 does not support ES2023 yet
20
+ "target": "ES2022",
20
21
  "useDefineForClassFields": true,
21
22
  "verbatimModuleSyntax": true
22
23
  },
@@ -2,6 +2,8 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "extends": "./tsconfig.base.json",
4
4
  "compilerOptions": {
5
- "lib": ["ES2021", "DOM", "DOM.Iterable"]
5
+ "module": "ESNext",
6
+ "moduleResolution": "Bundler",
7
+ "lib": ["ES2023", "DOM", "DOM.Iterable"]
6
8
  }
7
9
  }