@foray1010/tsconfig 13.0.0 → 15.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,40 @@
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
+ ## [15.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@14.0.0...@foray1010/tsconfig@15.0.0) (2025-10-31)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - **tsconfig:** based on @tsconfig/node20
11
+ - require nodejs `^20.19.0 || ^22.12.0 || >=24.11.0`
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ - require nodejs `^20.19.0 || ^22.12.0 || >=24.11.0` ([aae1835](https://github.com/foray1010/common-presets/commit/aae1835f9517621ddc0d71f31bda39e9163213a1))
16
+
17
+ ### Code Refactoring
18
+
19
+ - **tsconfig:** based on @tsconfig/node20 ([d0f2598](https://github.com/foray1010/common-presets/commit/d0f2598e2738173ad85a1eea4b50ed3a64c1c995))
20
+
21
+ ## [14.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@13.0.0...@foray1010/tsconfig@14.0.0) (2025-03-11)
22
+
23
+ ### ⚠ BREAKING CHANGES
24
+
25
+ - **tsconfig:** require nodejs `^20.10.0 || >=22.11.0`
26
+ - **tsconfig:** enforce compatibility with --experimental-strip-types flag
27
+ - **tsconfig:** drop ts-node config
28
+ - **tsconfig:** require typescript ^5.8.2
29
+
30
+ ### Features
31
+
32
+ - **tsconfig:** enable node18 module ([cdd20a3](https://github.com/foray1010/common-presets/commit/cdd20a38d0ef1fe77a008d5b5c8c5e190227fc18))
33
+ - **tsconfig:** enforce compatibility with --experimental-strip-types flag ([4996c21](https://github.com/foray1010/common-presets/commit/4996c21c63f808e19ced348bb4ebc23f3cc3364b))
34
+
35
+ ### Miscellaneous Chores
36
+
37
+ - **tsconfig:** drop ts-node config ([c3ca62b](https://github.com/foray1010/common-presets/commit/c3ca62b2f3b1c00037e719127ecf6802b5d380fb))
38
+ - **tsconfig:** require nodejs `^20.10.0 || >=22.11.0` ([423f255](https://github.com/foray1010/common-presets/commit/423f255d20f6565c78dedd06dc25b0286e5ebc9d))
39
+
6
40
  ## [13.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@12.1.0...@foray1010/tsconfig@13.0.0) (2024-09-10)
7
41
 
8
42
  ### ⚠ 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": "13.0.0",
4
+ "version": "15.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": {
@@ -17,14 +17,17 @@
17
17
  "scripts": {
18
18
  "type:check": "echo 'Skipped: non-ts package'"
19
19
  },
20
+ "dependencies": {
21
+ "@tsconfig/node20": "^20.1.6"
22
+ },
20
23
  "peerDependencies": {
21
- "typescript": "^5.6.2"
24
+ "typescript": "^5.9.3"
22
25
  },
23
26
  "engines": {
24
- "node": "^18.12.0 || >=20.9.0"
27
+ "node": "^20.19.0 || ^22.12.0 || >=24.11.0"
25
28
  },
26
29
  "publishConfig": {
27
30
  "access": "public"
28
31
  },
29
- "gitHead": "ed31635a229b32f5b4664a4aebcfe9b6dc3cec19"
32
+ "gitHead": "f4d31b1d0075b0c77a6ae59e7442a977df4b4d15"
30
33
  }
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "@tsconfig/node20/tsconfig.json",
3
4
  "compilerOptions": {
4
- "esModuleInterop": true,
5
+ "erasableSyntaxOnly": true,
5
6
  "exactOptionalPropertyTypes": true,
6
7
  "incremental": true,
7
- "lib": ["ES2023"],
8
- "module": "Node16",
8
+ "module": "Node20",
9
9
  "moduleDetection": "force",
10
- "moduleResolution": "Node16",
11
10
  "noEmit": true,
12
11
  "noEmitOnError": true,
13
12
  "noImplicitOverride": true,
@@ -15,19 +14,7 @@
15
14
  "noUncheckedIndexedAccess": true,
16
15
  "noUncheckedSideEffectImports": true,
17
16
  "resolveJsonModule": true,
18
- "skipLibCheck": true,
19
- "strict": true,
20
- "target": "ES2023",
21
17
  "useDefineForClassFields": true,
22
18
  "verbatimModuleSyntax": true
23
- },
24
- "ts-node": {
25
- "compilerOptions": {
26
- // fix `ReferenceError: exports is not defined in ES module scope`
27
- // https://github.com/TypeStrong/ts-node/issues/1007#issuecomment-1179500155
28
- "module": "ESNext"
29
- },
30
- "esm": true,
31
- "transpileOnly": true
32
19
  }
33
20
  }
@@ -2,8 +2,8 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "extends": "./tsconfig.base.json",
4
4
  "compilerOptions": {
5
+ "lib": ["ES2023", "DOM", "DOM.Iterable"],
5
6
  "module": "ESNext",
6
- "moduleResolution": "Bundler",
7
- "lib": ["ES2023", "DOM", "DOM.Iterable"]
7
+ "moduleResolution": "Bundler"
8
8
  }
9
9
  }