@4mbl/tsconfig 5.0.0-beta.2 → 5.0.0-beta.3

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
@@ -1,5 +1,11 @@
1
1
  # @4mbl/tsconfig Changelog
2
2
 
3
+ ## 5.0.0-beta.3
4
+
5
+ ### Major Changes
6
+
7
+ - f95bc32: [base] Disable noPropertyAccessFromIndexSignature explicitly
8
+
3
9
  ## 5.0.0-beta.2
4
10
 
5
11
  ### Major Changes
package/dist/base.json CHANGED
@@ -34,7 +34,9 @@
34
34
  "erasableSyntaxOnly": true,
35
35
  "allowSyntheticDefaultImports": true,
36
36
  "allowUnreachableCode": false,
37
- "exactOptionalPropertyTypes": true,
37
+ // exactOptionalPropertyTypes causes too much noise to enable.
38
+ // Disabled explicitly as a reminder to keep it off.
39
+ "exactOptionalPropertyTypes": false,
38
40
  "forceConsistentCasingInFileNames": true,
39
41
  "noFallthroughCasesInSwitch": true,
40
42
  "noImplicitAny": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/tsconfig",
3
- "version": "5.0.0-beta.2",
3
+ "version": "5.0.0-beta.3",
4
4
  "description": "Strict TypeScript configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",