monaco-editor/test/smoke/amd.html

21 lines
470 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<div id="editor-container" style="position: absolute; width: 500px; height: 400px"></div>
<script src="../../release/dev/vs/loader.js"></script>
<script>
require.config({
paths: {
vs: '../../release/dev/vs'
}
});
require(['vs/editor/editor.main'], () => {
window.monacoAPI = monaco;
});
</script>
</body>
</html>