fix(types): add type definition for typescript.typeCheck (#5326)

This commit is contained in:
Pooya Parsa 2019-03-24 15:32:57 +04:30 committed by GitHub
commit 565c0d1c48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,8 @@ export interface NuxtConfigurationBuild {
templates?: any templates?: any
terser?: TerserPluginOptions | boolean terser?: TerserPluginOptions | boolean
transpile?: (string | RegExp)[] transpile?: (string | RegExp)[]
useForkTsChecker?: { [key: string]: string } | boolean // TBD - Couldn't find typedefs for the forkTsCheckerWebpackPlugin options typescript?: {
typeCheck?: { [key: string]: any } | boolean // TBD - Couldn't find typedefs for the forkTsCheckerWebpackPlugin options
}
watch?: string[] watch?: string[]
} }