@naturalcycles/dev-lib 13.17.0 → 13.18.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/cfg/eslint-rules.js +1 -1
- package/cfg/tsconfig.json +4 -0
- package/package.json +1 -1
package/cfg/eslint-rules.js
CHANGED
package/cfg/tsconfig.json
CHANGED
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
"noImplicitOverride": true,
|
|
29
29
|
"noUncheckedIndexedAccess": true,
|
|
30
30
|
"noPropertyAccessFromIndexSignature": true,
|
|
31
|
+
// Otherwise since es2022 it defaults to true
|
|
32
|
+
// and starts to produce different/unexpected behavior
|
|
33
|
+
// https://angular.schule/blog/2022-11-use-define-for-class-fields
|
|
34
|
+
"useDefineForClassFields": false,
|
|
31
35
|
|
|
32
36
|
// todo: monitor if we should have it default or not
|
|
33
37
|
// Enabled should be faster, but will catch less errors
|