mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-24 03:35:38 +00:00
Resubmission of #157532 with the following changes: - Use `eslint-plugin-local` instead of `yarn` link to run our plugins - Move our plugins to a top level `.eslintplugin` dir (as required by `eslint-plugin-local`) - Update all names to `local/`
12 lines
559 B
JavaScript
12 lines
559 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// eslint-disable-next-line local/code-no-standalone-editor
|
|
import * as monaco from './out/vs/editor/editor.main.js';
|
|
|
|
monaco.editor.create(document.getElementById('container'), {
|
|
value: 'Hello world'
|
|
});
|