diff options
Diffstat (limited to '')
| -rw-r--r-- | demo/src/index.html | 2 | ||||
| -rw-r--r-- | demo/src/index.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demo/src/index.html b/demo/src/index.html index 332ccb3..4171fa7 100644 --- a/demo/src/index.html +++ b/demo/src/index.html @@ -27,7 +27,7 @@ <pre id="serial-output-text"></pre> </div> </div> - <script src="//cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.18.0/min/vs/loader.js"></script> + <script src="//cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min/vs/loader.js"></script> <script src="./index.ts"></script> </body> </html> diff --git a/demo/src/index.ts b/demo/src/index.ts index e3f9a67..5e90bb3 100644 --- a/demo/src/index.ts +++ b/demo/src/index.ts @@ -29,7 +29,7 @@ void loop() { declare const window: any; // eslint-disable-line @typescript-eslint/no-explicit-any declare const monaco: any; // eslint-disable-line @typescript-eslint/no-explicit-any window.require.config({ - paths: { vs: 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.18.0/min/vs' } + paths: { vs: 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min/vs' } }); window.require(['vs/editor/editor.main'], () => { editor = monaco.editor.create(document.querySelector('.code-editor'), { |
