@foray1010/tsconfig 6.0.0 → 8.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,38 @@
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.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.0.0...@foray1010/tsconfig@8.0.1) (2022-08-24)
7
+
8
+ **Note:** Version bump only for package @foray1010/tsconfig
9
+
10
+ ## [8.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@7.0.1...@foray1010/tsconfig@8.0.0) (2022-07-28)
11
+
12
+ ### ⚠ BREAKING CHANGES
13
+
14
+ - **tsconfig:** require typescript ^4.7.4
15
+
16
+ ### Features
17
+
18
+ - **tsconfig:** enable noImplicitOverride ([f74a2f1](https://github.com/foray1010/common-presets/commit/f74a2f1351fd6eac1120aea4bfae3b4ec709d45d))
19
+
20
+ ## [7.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@7.0.0...@foray1010/tsconfig@7.0.1) (2022-06-13)
21
+
22
+ ### Bug Fixes
23
+
24
+ - should drop node 17 in version range ([0e911fd](https://github.com/foray1010/common-presets/commit/0e911fd737e472d699bfc32d866067ed6ccfa269))
25
+
26
+ ## [7.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@6.0.0...@foray1010/tsconfig@7.0.0) (2022-06-13)
27
+
28
+ ### ⚠ BREAKING CHANGES
29
+
30
+ - drop support for typescript >=5
31
+ - drop node 12 and 17
32
+
33
+ ### Miscellaneous Chores
34
+
35
+ - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
36
+ - remove peerDependencies versions that are not sure if supported ([2175adb](https://github.com/foray1010/common-presets/commit/2175adb62efe7d1762f6f66ce9bb0e7adb5f82e5))
37
+
6
38
  ## [6.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@5.0.1...@foray1010/tsconfig@6.0.0) (2021-11-10)
7
39
 
8
40
  ### ⚠ BREAKING CHANGES
package/README.md CHANGED
@@ -14,6 +14,7 @@ If you need to compile TypeScript, use [@foray1010/babel-preset](../babel-preset
14
14
 
15
15
  ```json
16
16
  {
17
+ "$schema": "https://json.schemastore.org/tsconfig",
17
18
  "extends": "@foray1010/tsconfig"
18
19
  }
19
20
  ```
@@ -22,6 +23,7 @@ If you need to compile TypeScript, use [@foray1010/babel-preset](../babel-preset
22
23
 
23
24
  ```json
24
25
  {
26
+ "$schema": "https://json.schemastore.org/tsconfig",
25
27
  "extends": "@foray1010/tsconfig",
26
28
  "compilerOptions": {
27
29
  "emitDeclarationOnly": true,
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": "6.0.0",
4
+ "version": "8.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": {
@@ -14,14 +14,17 @@
14
14
  "**/*.{cjs,js,json,mjs}",
15
15
  "*.md"
16
16
  ],
17
+ "scripts": {
18
+ "type:check": "echo 'Skipped: non-ts package'"
19
+ },
17
20
  "peerDependencies": {
18
- "typescript": ">=4.1.2"
21
+ "typescript": "^4.7.4"
19
22
  },
20
23
  "engines": {
21
- "node": "^12.22.0 || ^14.17.0 || >=16.13.0"
24
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
22
25
  },
23
26
  "publishConfig": {
24
27
  "access": "public"
25
28
  },
26
- "gitHead": "51c3d9afc5e12b9326c67dddaee81a0cb2b47b22"
29
+ "gitHead": "4558b3b10e979f052739e103aef0aad62f3e637b"
27
30
  }
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,