mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-06 13:50:29 +08:00
* Update JupyterLab and Lumino packages * fix resolutions * Update to TypeScript 5 final * Reuse upstream sessionDialogs plugin * update gitpod setup * Update UI tests setup * Update npmClient * try without immutable * add explicit playwright dep * Update mathjax package * update yarn.lock * update dev dependencies * lint * update yarn.lock * Fix typescript dependency * fix metapackage
18 lines
375 B
JavaScript
18 lines
375 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),
|
|
];
|