You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "path" argument must be of type string. Received an instance of Array
Array are allowed by Schema:
"extendsDefinition": {
"properties": {
"extends": {
"description": "Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later).",
"oneOf": [
{
"default": "",
"type": "string"
},
{
"default": [],
"items": {
"type": "string"
},
"type": "array"
}
]
}
}
}
The text was updated successfully, but these errors were encountered:
Here example config for tsconfig.json:
This will lead tsconfig-resolver to error:
The "path" argument must be of type string. Received an instance of Array
Array are allowed by Schema:
The text was updated successfully, but these errors were encountered: