@foray1010/tsconfig 12.1.0 → 13.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 CHANGED
@@ -3,6 +3,16 @@
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
+ ## [13.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@12.1.0...@foray1010/tsconfig@13.0.0) (2024-09-10)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - **tsconfig:** turn on noUncheckedSideEffectImports flag
11
+
12
+ ### Features
13
+
14
+ - **tsconfig:** turn on noUncheckedSideEffectImports flag ([507da41](https://github.com/foray1010/common-presets/commit/507da41950f8d33fdc66a0c32a279fb6d295b4ac))
15
+
6
16
  ## [12.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/tsconfig@12.0.0...@foray1010/tsconfig@12.1.0) (2024-07-21)
7
17
 
8
18
  ### Features
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": "12.1.0",
4
+ "version": "13.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": {
@@ -18,7 +18,7 @@
18
18
  "type:check": "echo 'Skipped: non-ts package'"
19
19
  },
20
20
  "peerDependencies": {
21
- "typescript": "^5.0.2"
21
+ "typescript": "^5.6.2"
22
22
  },
23
23
  "engines": {
24
24
  "node": "^18.12.0 || >=20.9.0"
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "e751b4ba48732b04545e8f4b99e682cf5ba74dab"
29
+ "gitHead": "ed31635a229b32f5b4664a4aebcfe9b6dc3cec19"
30
30
  }
@@ -13,6 +13,7 @@
13
13
  "noImplicitOverride": true,
14
14
  "noPropertyAccessFromIndexSignature": true,
15
15
  "noUncheckedIndexedAccess": true,
16
+ "noUncheckedSideEffectImports": true,
16
17
  "resolveJsonModule": true,
17
18
  "skipLibCheck": true,
18
19
  "strict": true,