@foray1010/tsconfig 5.0.1 → 8.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,44 @@
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
+ ## [8.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@7.0.1...@foray1010/tsconfig@8.0.0) (2022-07-28)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - **tsconfig:** require typescript ^4.7.4
11
+
12
+ ### Features
13
+
14
+ - **tsconfig:** enable noImplicitOverride ([f74a2f1](https://github.com/foray1010/common-presets/commit/f74a2f1351fd6eac1120aea4bfae3b4ec709d45d))
15
+
16
+ ## [7.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@7.0.0...@foray1010/tsconfig@7.0.1) (2022-06-13)
17
+
18
+ ### Bug Fixes
19
+
20
+ - should drop node 17 in version range ([0e911fd](https://github.com/foray1010/common-presets/commit/0e911fd737e472d699bfc32d866067ed6ccfa269))
21
+
22
+ ## [7.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@6.0.0...@foray1010/tsconfig@7.0.0) (2022-06-13)
23
+
24
+ ### ⚠ BREAKING CHANGES
25
+
26
+ - drop support for typescript >=5
27
+ - drop node 12 and 17
28
+
29
+ ### Miscellaneous Chores
30
+
31
+ - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
32
+ - remove peerDependencies versions that are not sure if supported ([2175adb](https://github.com/foray1010/common-presets/commit/2175adb62efe7d1762f6f66ce9bb0e7adb5f82e5))
33
+
34
+ ## [6.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@5.0.1...@foray1010/tsconfig@6.0.0) (2021-11-10)
35
+
36
+ ### ⚠ BREAKING CHANGES
37
+
38
+ - only support node ^12.22.0 || ^14.17.0 || >=16.13.0
39
+
40
+ ### Miscellaneous Chores
41
+
42
+ - bump node version requirement ([6906953](https://github.com/foray1010/common-presets/commit/6906953ac0b781376d5c8a17d27faef6a457278a))
43
+
6
44
  ### [5.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@5.0.0...@foray1010/tsconfig@5.0.1) (2021-08-25)
7
45
 
8
46
  **Note:** Version bump only for package @foray1010/tsconfig
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": "5.0.1",
4
+ "version": "8.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": {
@@ -15,13 +15,13 @@
15
15
  "*.md"
16
16
  ],
17
17
  "peerDependencies": {
18
- "typescript": ">=4.1.2"
18
+ "typescript": "^4.7.4"
19
19
  },
20
20
  "engines": {
21
- "node": ">=12.13"
21
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "71a90d13cb71225ba3530a5f8bb5c75a780f4f03"
26
+ "gitHead": "5e7eeeaa3ef20a89308a4a27d92e06ac89398adf"
27
27
  }
package/tsconfig.json CHANGED
@@ -12,6 +12,7 @@
12
12
  "moduleResolution": "node",
13
13
  "noEmit": true,
14
14
  "noEmitOnError": true,
15
+ "noImplicitOverride": true,
15
16
  "resolveJsonModule": true,
16
17
  "skipLibCheck": true,
17
18
  "strict": true,