Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/monaco/esm-check/index.js
3520 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
// eslint-disable-next-line local/code-no-standalone-editor
7
import * as monaco from './out/vs/editor/editor.main.js';
8
9
monaco.editor.create(document.getElementById('container'), {
10
value: 'Hello world'
11
});
12
13