chore(cli): skip ts-checker info message

This commit is contained in:
chenjiahan 2020-09-19 06:59:09 +08:00
parent f964790b3e
commit 4d4959bbab

View File

@ -3,6 +3,7 @@ import webpack from 'webpack';
import FriendlyErrorsPlugin from '@nuxt/friendly-errors-webpack-plugin';
import { VueLoaderPlugin } from 'vue-loader';
import { join } from 'path';
import { consola } from '../common/logger';
import { existsSync } from 'fs';
import { WebpackConfig } from '../common/types';
import {
@ -58,6 +59,18 @@ if (existsSync(tsconfigPath)) {
},
},
},
logger: {
issues: {
// skip info message
log() {},
warn(message: string) {
consola.warn(message);
},
error(message: string) {
consola.error(message);
},
},
},
})
);
}