@foray1010/tsconfig 7.0.0 → 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,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
+ ## [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
+
6
22
  ## [7.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@6.0.0...@foray1010/tsconfig@7.0.0) (2022-06-13)
7
23
 
8
24
  ### ⚠ BREAKING CHANGES
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": "7.0.0",
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": "^14.17.0 || >=16.13.0 || >=18.0.0"
21
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "6b2dbe64ac8e4677dfb6b72f70e185bcd607f17b"
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,