@foray1010/tsconfig 7.0.0 → 8.0.2
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 +24 -0
- package/README.md +3 -1
- package/package.json +7 -4
- package/tsconfig.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.2](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.0.1...@foray1010/tsconfig@8.0.2) (2022-08-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @foray1010/tsconfig
|
|
9
|
+
|
|
10
|
+
## [8.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.0.0...@foray1010/tsconfig@8.0.1) (2022-08-24)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @foray1010/tsconfig
|
|
13
|
+
|
|
14
|
+
## [8.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@7.0.1...@foray1010/tsconfig@8.0.0) (2022-07-28)
|
|
15
|
+
|
|
16
|
+
### ⚠ BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
- **tsconfig:** require typescript ^4.7.4
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- **tsconfig:** enable noImplicitOverride ([f74a2f1](https://github.com/foray1010/common-presets/commit/f74a2f1351fd6eac1120aea4bfae3b4ec709d45d))
|
|
23
|
+
|
|
24
|
+
## [7.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@7.0.0...@foray1010/tsconfig@7.0.1) (2022-06-13)
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- should drop node 17 in version range ([0e911fd](https://github.com/foray1010/common-presets/commit/0e911fd737e472d699bfc32d866067ed6ccfa269))
|
|
29
|
+
|
|
6
30
|
## [7.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@6.0.0...@foray1010/tsconfig@7.0.0) (2022-06-13)
|
|
7
31
|
|
|
8
32
|
### ⚠ BREAKING CHANGES
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ If you need to compile TypeScript, use [@foray1010/babel-preset](../babel-preset
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
1. `yarn add -DE
|
|
9
|
+
1. `yarn add -DE @foray1010/tsconfig typescript`
|
|
10
10
|
|
|
11
11
|
2. Create an `tsconfig.json` in the project root
|
|
12
12
|
|
|
@@ -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": "
|
|
4
|
+
"version": "8.0.2",
|
|
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.
|
|
21
|
+
"typescript": "^4.7.4"
|
|
19
22
|
},
|
|
20
23
|
"engines": {
|
|
21
|
-
"node": "^14.17.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": "
|
|
29
|
+
"gitHead": "8f4681aea3421297bffa13e0bbbf7f6dba20ca70"
|
|
27
30
|
}
|