@foray1010/tsconfig 8.0.2 → 9.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 +19 -0
- package/package.json +2 -2
- package/tsconfig.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [9.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.1.0...@foray1010/tsconfig@9.0.0) (2022-10-21)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- enforce file extension and use native esm typescript
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- enforce file extension and use native esm typescript ([c885710](https://github.com/foray1010/common-presets/commit/c8857103a3f828d2cf9946885495bd92d15b8d5d))
|
|
15
|
+
|
|
16
|
+
## [8.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.0.2...@foray1010/tsconfig@8.1.0) (2022-10-07)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- **tsconfig:** add DOM.Iterable in lib ([d04c00a](https://github.com/foray1010/common-presets/commit/d04c00a96dd6bf2223ec7ce2fb0238466d9b86df))
|
|
21
|
+
- **tsconfig:** enable exactOptionalPropertyTypes ([51f22f5](https://github.com/foray1010/common-presets/commit/51f22f5463bbf4063e2e2f872bb29f51f3ccdf18))
|
|
22
|
+
- **tsconfig:** enable noUncheckedIndexedAccess ([6557b74](https://github.com/foray1010/common-presets/commit/6557b74aca9ddffe27a744b6caf4386d0b42e32e))
|
|
23
|
+
- use indexed syntax for accessing undefined fields ([7c1f9d6](https://github.com/foray1010/common-presets/commit/7c1f9d63349f0b34b00aa8608d6908763d964c3e))
|
|
24
|
+
|
|
6
25
|
## [8.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@8.0.1...@foray1010/tsconfig@8.0.2) (2022-08-24)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @foray1010/tsconfig
|
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": "9.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": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "c6310f72bc0c02649d5b7fe7cdb059e1c36e8200"
|
|
30
30
|
}
|
package/tsconfig.json
CHANGED
|
@@ -3,16 +3,21 @@
|
|
|
3
3
|
"compilerOptions": {
|
|
4
4
|
"declaration": true,
|
|
5
5
|
"esModuleInterop": true,
|
|
6
|
+
"exactOptionalPropertyTypes": true,
|
|
6
7
|
"forceConsistentCasingInFileNames": true,
|
|
7
8
|
"importsNotUsedAsValues": "error",
|
|
8
9
|
"incremental": true,
|
|
9
10
|
"isolatedModules": true,
|
|
10
11
|
"jsx": "react-jsx",
|
|
11
|
-
"lib": ["ES2020", "DOM"],
|
|
12
|
-
"
|
|
12
|
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
13
|
+
"module": "Node16",
|
|
14
|
+
"moduleDetection": "force",
|
|
15
|
+
"moduleResolution": "Node16",
|
|
13
16
|
"noEmit": true,
|
|
14
17
|
"noEmitOnError": true,
|
|
15
18
|
"noImplicitOverride": true,
|
|
19
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
20
|
+
"noUncheckedIndexedAccess": true,
|
|
16
21
|
"resolveJsonModule": true,
|
|
17
22
|
"skipLibCheck": true,
|
|
18
23
|
"strict": true,
|