mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-04 15:24:02 -04:00
fix: remove suppressImplicitAnyIndexErrors from typescript settings (#5991)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -15,5 +15,6 @@
|
||||
{
|
||||
"path": "../../workspace/find-workspace-dir"
|
||||
}
|
||||
]
|
||||
],
|
||||
"composite": true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user