@foray1010/tsconfig 11.0.0 → 11.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,13 @@
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.1](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@11.0.0...@foray1010/tsconfig@11.0.1) (2023-03-23)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **tsconfig:** 'isolatedModules' cannot be specified with 'verbatimModuleSyntax' ([bff99ca](https://github.com/foray1010/common-presets/commit/bff99cac127e28810fc49166ed750dd71d4eefc6))
11
+ - **tsconfig:** does not work with existing eslint plugins because of multiple extends ([57e9674](https://github.com/foray1010/common-presets/commit/57e967488f8fea914c6d212c7e82d2187a582097))
12
+
6
13
  ## [11.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@10.0.0...@foray1010/tsconfig@11.0.0) (2023-03-23)
7
14
 
8
15
  ### ⚠ 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.0",
4
+ "version": "11.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": {
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "ee22f073ee1702354310091b7c3a5ec18a930bec"
29
+ "gitHead": "b764b4d3bd39a74cd4b14916c820fe5640fe895c"
30
30
  }
@@ -4,7 +4,6 @@
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",
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./tsconfig.base.json",
3
4
  "compilerOptions": {
4
5
  "lib": ["ES2021", "DOM", "DOM.Iterable"]
5
6
  }