var -> let

This commit is contained in:
Alex Dima 2020-09-18 20:14:22 +02:00
parent c196027bdc
commit e31737a45d
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0
4 changed files with 31 additions and 30 deletions

View file

@ -26,7 +26,7 @@
<button id="getAST">Print AST to console</button>
<script>
var paths = {
const paths = {
'vs/basic-languages': '../node_modules/monaco-languages/release/dev',
'vs/language/typescript/fillers/monaco-editor-core':
'../out/amd/fillers/monaco-editor-core-amd',
@ -41,7 +41,7 @@
paths['vs/language/typescript'] = prefix + '/out/amd';
}
}
var require = {
self.require = {
paths: paths
};
</script>