@foray1010/tsconfig 9.0.1 → 9.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
+ ## [9.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@9.0.1...@foray1010/tsconfig@9.1.0) (2022-10-21)
7
+
8
+ ### Features
9
+
10
+ - **tsconfig:** add default config for ts-node ([c42433b](https://github.com/foray1010/common-presets/commit/c42433b288de72ee2999ad042268ba8cda43833c))
11
+
6
12
  ## [9.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@9.0.0...@foray1010/tsconfig@9.0.1) (2022-10-21)
7
13
 
8
14
  ### 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": "9.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": "e6b36679364f3580e38682d2de6ca95536bfb2e1"
29
+ "gitHead": "353af651f7bf1bd01c4597a225a4558c91f8955b"
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
  }