@foray1010/tsconfig 8.1.0 → 9.0.1

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
+ ## [9.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@9.0.0...@foray1010/tsconfig@9.0.1) (2022-10-21)
7
+
8
+ ### Bug Fixes
9
+
10
+ - use node module resolution as node16 does not work with many libraries ([3b37293](https://github.com/foray1010/common-presets/commit/3b37293ea42fefb2a7fa8362b21aac4d4f1d0a00))
11
+
12
+ ## [9.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.1.0...@foray1010/tsconfig@9.0.0) (2022-10-21)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ - enforce file extension and use native esm typescript
17
+
18
+ ### Features
19
+
20
+ - enforce file extension and use native esm typescript ([c885710](https://github.com/foray1010/common-presets/commit/c8857103a3f828d2cf9946885495bd92d15b8d5d))
21
+
6
22
  ## [8.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.0.2...@foray1010/tsconfig@8.1.0) (2022-10-07)
7
23
 
8
24
  ### 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": "8.1.0",
4
+ "version": "9.0.1",
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": "0b6e4b29bc99ab8523c726d33f5a8b8531c6ee56"
29
+ "gitHead": "e6b36679364f3580e38682d2de6ca95536bfb2e1"
30
30
  }
package/tsconfig.json CHANGED
@@ -10,7 +10,9 @@
10
10
  "isolatedModules": true,
11
11
  "jsx": "react-jsx",
12
12
  "lib": ["ES2020", "DOM", "DOM.Iterable"],
13
- "moduleResolution": "node",
13
+ "module": "Node16",
14
+ "moduleDetection": "force",
15
+ "moduleResolution": "Node",
14
16
  "noEmit": true,
15
17
  "noEmitOnError": true,
16
18
  "noImplicitOverride": true,