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