项目文件夹

文件

项目文件夹

0

忽略 .git-blame-ignore-revs 的修订。点击 绕过 并查看正常的 Blame 视图。

27 行
832 B
JavaScript

2024-09-10 19:37:36 -07:00
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
//@ts-check
'use strict';
const withDefaults = require('../shared.webpack.config');
2024-09-24 04:46:08 +00:00
const path = require('path');
2024-09-10 19:37:36 -07:00
module.exports = withDefaults({
context: __dirname,
entry: {
2024-09-24 04:46:08 +00:00
['ipynbMain.node']: './src/ipynbMain.node.ts',
notebookSerializerWorker: './src/notebookSerializerWorker.ts',
2024-09-10 19:37:36 -07:00
},
output: {
2024-09-24 04:46:08 +00:00
path: path.resolve(__dirname, 'dist'),
filename: '[name].js'
},
plugins: [
...withDefaults.nodePlugins(__dirname), // add plugins, don't replace inherited
]
2024-09-10 19:37:36 -07:00
});