/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/4// @ts-check5import path from 'node:path';6import { run } from '../esbuild-webview-common.mjs';78const srcDir = path.join(import.meta.dirname, 'notebook-src');9const outDir = path.join(import.meta.dirname, 'notebook-out');1011run({12entryPoints: [13path.join(srcDir, 'cellAttachmentRenderer.ts'),14],15srcDir,16outdir: outDir,17}, process.argv);181920