monaco-yaml/examples/monaco-editor-webpack-plugin/index.js
2021-11-23 15:00:08 +01:00

16 lines
246 B
JavaScript

const value = `
number: 0xfe
boolean: true
`;
async function create() {
const monaco = await import('./main.js');
monaco.editor.create(document.querySelector('.editor'), {
language: 'yaml',
tabSize: 2,
value,
});
}
create();