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 7import * as monaco from './out/vs/editor/editor.main.js'; 8 9monaco.editor.create(document.getElementById('container'), { 10 value: 'Hello world' 11}); 12 13