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.
lintOnSave
1 parent 3da799c commit e9259cdCopy full SHA for e9259cd
packages/@vue/cli-service/types/ProjectOptions.d.ts
@@ -1,7 +1,7 @@
1
import ChainableWebpackConfig from 'webpack-chain'
2
import { WebpackOptions } from 'webpack/declarations/WebpackOptions'
3
4
-type PageEntry = string;
+type PageEntry = string | string[];
5
6
interface PageConfig {
7
entry: PageEntry;
@@ -51,7 +51,7 @@ export interface ProjectOptions {
51
chainWebpack?: (config: ChainableWebpackConfig) => void;
52
configureWebpack?: WebpackOptions | ((config: WebpackOptions) => (WebpackOptions | void));
53
54
- lintOnSave?: boolean | 'error';
+ lintOnSave?: boolean | 'default' | 'warning' | 'error';
55
pwa?: object;
56
57
pluginOptions?: object;
0 commit comments