@foray1010/tsconfig 9.0.1 → 10.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,22 @@
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
+ ## [10.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@9.1.0...@foray1010/tsconfig@10.0.0) (2022-11-07)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - drop nodejs 14.17 and 18.11
11
+
12
+ ### Miscellaneous Chores
13
+
14
+ - drop nodejs 14.17 and 18.11 ([8e5c967](https://github.com/foray1010/common-presets/commit/8e5c9677b89d38c88de465f069bb5de683a8a40b))
15
+
16
+ ## [9.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@9.0.1...@foray1010/tsconfig@9.1.0) (2022-10-21)
17
+
18
+ ### Features
19
+
20
+ - **tsconfig:** add default config for ts-node ([c42433b](https://github.com/foray1010/common-presets/commit/c42433b288de72ee2999ad042268ba8cda43833c))
21
+
6
22
  ## [9.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@9.0.0...@foray1010/tsconfig@9.0.1) (2022-10-21)
7
23
 
8
24
  ### 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": "9.0.1",
4
+ "version": "10.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": "^4.7.4"
22
22
  },
23
23
  "engines": {
24
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
24
+ "node": "^14.18.0 || ^16.13.0 || >=18.12.0"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "e6b36679364f3580e38682d2de6ca95536bfb2e1"
29
+ "gitHead": "4acba77dace91746ac98872f4b8f62b410de82f5"
30
30
  }
package/tsconfig.json CHANGED
@@ -23,5 +23,14 @@
23
23
  "strict": true,
24
24
  "target": "ES2020",
25
25
  "useDefineForClassFields": true
26
+ },
27
+ "ts-node": {
28
+ "compilerOptions": {
29
+ // fix `ReferenceError: exports is not defined in ES module scope`
30
+ // https://github.com/TypeStrong/ts-node/issues/1007#issuecomment-1179500155
31
+ "module": "ESNext"
32
+ },
33
+ "esm": true,
34
+ "transpileOnly": true
26
35
  }
27
36
  }