monaco-editor/webpack-plugin/test/index.js
2021-11-15 16:16:53 +01:00

6 lines
195 B
JavaScript

import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
monaco.editor.create(document.getElementById('container'), {
value: 'console.log("Hello, world")',
language: 'javascript'
});