mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-21 01:11:21 +08:00
18 lines
371 B
JavaScript
18 lines
371 B
JavaScript
const base = require('./webpack.config');
|
|
const ExtraWatchWebpackPlugin = require('extra-watch-webpack-plugin');
|
|
|
|
module.exports = [
|
|
{
|
|
...base[0],
|
|
bail: false,
|
|
watch: true,
|
|
plugins: [
|
|
...base[0].plugins,
|
|
new ExtraWatchWebpackPlugin({
|
|
files: ['../packages/_metapackage/tsconfig.tsbuildinfo']
|
|
})
|
|
]
|
|
},
|
|
...base.slice(1)
|
|
];
|