Rename serializer extension and set up build scripts

This commit is contained in:
Rob Lourens
2021-07-20 14:59:35 -07:00
parent 58cc6980d6
commit 5793ae026a
22 changed files with 1109 additions and 5543 deletions

View File

@@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------------------------
* 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 withBrowserDefaults = require('../shared.webpack.config').browser;
const config = withBrowserDefaults({
context: __dirname,
entry: {
extension: './src/ipynbMain.ts'
},
output: {
filename: 'ipynbMain.js'
}
});
module.exports = config;