fix: remove suppressImplicitAnyIndexErrors from typescript settings (#5991)

This commit is contained in:
Zoltan Kochan
2023-01-28 18:19:26 +02:00
committed by GitHub
parent 4e0bed9a13
commit 583e3954be
256 changed files with 952 additions and 692 deletions

View File

@@ -187,7 +187,7 @@ const CUSTOM_OPTION_PREFIX = 'config.'
function normalizeOptions (options: Record<string, unknown>, knownOptions: Set<string>) {
const standardOptionNames = []
const normalizedOptions = {}
const normalizedOptions: Record<string, unknown> = {}
for (const [optionName, optionValue] of Object.entries(options)) {
if (optionName.startsWith(CUSTOM_OPTION_PREFIX)) {
normalizedOptions[optionName.substring(CUSTOM_OPTION_PREFIX.length)] = optionValue

View File

@@ -15,5 +15,6 @@
{
"path": "../../workspace/find-workspace-dir"
}
]
],
"composite": true
}