fix: add type definition for configuring forkTsChecker

This commit is contained in:
Daniel Roe 2019-03-21 23:42:50 +00:00
parent 5d7757bf29
commit 2c1444d991
No known key found for this signature in database
GPG Key ID: 37103C9F8C1817F1

View File

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