fix(autoImports): dirs option should be string[] (#2186)

This commit is contained in:
Yasser Lahbibi 2021-11-29 12:14:03 +01:00 committed by GitHub
parent 730cd28d5e
commit ad2918195b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,5 +51,5 @@ export interface AutoImportsOptions {
*
* By default <rootDir>/composables is added
*/
dirs?: []
dirs?: string[]
}