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
1 changed files with 3 additions and 1 deletions

View File

@ -58,6 +58,8 @@ export interface NuxtConfigurationBuild {
templates?: any
terser?: TerserPluginOptions | boolean
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[]
}