vscode/extensions/ipynb/esbuild.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
660 B
JavaScript
Raw Normal View History

2022-07-19 19:40:24 +00: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
const path = require('path');
const srcDir = path.join(__dirname, 'notebook-src');
const outDir = path.join(__dirname, 'notebook-out');
require('../esbuild-webview-common').run({
entryPoints: [
path.join(srcDir, 'cellAttachmentRenderer.ts'),
],
srcDir,
outdir: outDir,
}, process.argv);