chore(ts): suppress 'noUncheckedIndexedAccess'

- this makes any non-typed object (and array) fields be possibly undefined

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
This commit is contained in:
Maksim Sukharev 2025-09-05 15:55:58 +02:00
parent 749280e56b
commit 09170cd639

View file

@ -7,6 +7,7 @@
"allowJs": true, "allowJs": true,
"checkJs": false, "checkJs": false,
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"noUncheckedIndexedAccess": false,
"strictNullChecks": true, "strictNullChecks": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"], "lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": [], "types": [],