14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
const common = require('./webpack.common');
|
|
const { merge } = require('webpack-merge');
|
|
const ESLintPlugin = require('eslint-webpack-plugin');
|
|
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'development',
|
|
plugins: [
|
|
new ESLintPlugin({
|
|
context: process.cwd()
|
|
})
|
|
]
|
|
});
|