We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 071afa7 commit 1a6f696Copy full SHA for 1a6f696
src/compiler/config/validate-plugins.ts
@@ -23,7 +23,7 @@ export function validatePlugins(config: d.Config, diagnostics: d.Diagnostic[]) {
23
config.plugins = getPlugins(config.plugins);
24
}
25
26
-function getPlugins(plugins: any[]): Plugin[] {
+function getPlugins(plugins: any[]): d.Plugin[] {
27
return plugins.filter(plugin => {
28
return !!(plugin && typeof plugin === 'object');
29
});
0 commit comments