@foray1010/tsconfig 11.0.0 → 11.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 +13 -0
- package/README.md +2 -8
- package/package.json +2 -2
- package/tsconfig.base.json +1 -2
- package/tsconfig.browser.json +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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
|
+
## [11.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.1...@foray1010/tsconfig@11.0.2) (2023-08-30)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **tsconfig:** use correct module resolution for typescript 5.2.2 ([57f4054](https://github.com/foray1010/common-presets/commit/57f4054a891301e5c09e49c24d38da90b7b6d386))
|
|
11
|
+
|
|
12
|
+
## [11.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.0...@foray1010/tsconfig@11.0.1) (2023-03-23)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **tsconfig:** 'isolatedModules' cannot be specified with 'verbatimModuleSyntax' ([bff99ca](https://github.com/foray1010/common-presets/commit/bff99cac127e28810fc49166ed750dd71d4eefc6))
|
|
17
|
+
- **tsconfig:** does not work with existing eslint plugins because of multiple extends ([57e9674](https://github.com/foray1010/common-presets/commit/57e967488f8fea914c6d212c7e82d2187a582097))
|
|
18
|
+
|
|
6
19
|
## [11.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@10.0.0...@foray1010/tsconfig@11.0.0) (2023-03-23)
|
|
7
20
|
|
|
8
21
|
### ⚠ BREAKING CHANGES
|
package/README.md
CHANGED
|
@@ -24,10 +24,7 @@ If you need to compile TypeScript, use [@foray1010/babel-preset](../babel-preset
|
|
|
24
24
|
```json
|
|
25
25
|
{
|
|
26
26
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
27
|
-
"extends":
|
|
28
|
-
"@foray1010/tsconfig/tsconfig.base.json",
|
|
29
|
-
"@foray1010/tsconfig/tsconfig.browser.json"
|
|
30
|
-
]
|
|
27
|
+
"extends": "@foray1010/tsconfig/tsconfig.browser.json"
|
|
31
28
|
}
|
|
32
29
|
```
|
|
33
30
|
|
|
@@ -36,10 +33,7 @@ If you need to compile TypeScript, use [@foray1010/babel-preset](../babel-preset
|
|
|
36
33
|
```json
|
|
37
34
|
{
|
|
38
35
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
39
|
-
"extends":
|
|
40
|
-
"@foray1010/tsconfig/tsconfig.base.json",
|
|
41
|
-
"@foray1010/tsconfig/tsconfig.react.json"
|
|
42
|
-
]
|
|
36
|
+
"extends": "@foray1010/tsconfig/tsconfig.react.json"
|
|
43
37
|
}
|
|
44
38
|
```
|
|
45
39
|
|
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": "11.0.
|
|
4
|
+
"version": "11.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": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "3d467bf363d8a14b4d4a0990b105dc0fef2b335a"
|
|
30
30
|
}
|
package/tsconfig.base.json
CHANGED
|
@@ -4,11 +4,10 @@
|
|
|
4
4
|
"esModuleInterop": true,
|
|
5
5
|
"exactOptionalPropertyTypes": true,
|
|
6
6
|
"incremental": true,
|
|
7
|
-
"isolatedModules": true,
|
|
8
7
|
"lib": ["ES2021"],
|
|
9
8
|
"module": "Node16",
|
|
10
9
|
"moduleDetection": "force",
|
|
11
|
-
"moduleResolution": "
|
|
10
|
+
"moduleResolution": "Node16",
|
|
12
11
|
"noEmit": true,
|
|
13
12
|
"noEmitOnError": true,
|
|
14
13
|
"noImplicitOverride": true,
|