Add basic mermaid rendering support in core

For #257761

Ports over extension sample + a few improvements to core
This commit is contained in:
Matt Bierner
2025-09-10 18:22:39 -07:00
parent b40ad39197
commit c7e7a779e8
21 changed files with 2362 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// @ts-check
import { browser as withBrowserDefaults } from '../shared.webpack.config.mjs';
export default withBrowserDefaults({
context: import.meta.dirname,
entry: {
extension: './src/extension.ts'
}
});