When using monaco-editor (0.15.6) embedded in a web page for editing javascript the syntax highlighting/colorization displays incorrect colors for object properties/functions if the property name or function name corresponds to a language keyword (such as 'delete' or 'throw'). The syntax highlighting/colorization in VS Code does not have this same issue, so wonder if there is a way to fix/override this behavior when using monaco-editor in a browser. Here is an example of the highlighting when an object has a property named 'delete'
You will notice that the property named 'prop2' has the correct color, however the property named 'delete' does not. Theme and language setup are below:
monaco.editor.setTheme('vs-dark');
monaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({
noSemanticValidation: false,
noSyntaxValidation: false,
});
monaco.languages.typescript.javascriptDefaults.setCompilerOptions({
allowNonTsExtensions: true,
experimentalDecorators: true,
esModuleInterop: true,
allowSyntheticDefaultImports: true,
noImplicitAny: true,
module: monaco.languages.typescript.ModuleKind.ESNext,
target: monaco.languages.typescript.ScriptTarget.ESNext,
allowJs: true,
checkJs: true,
noUnusedLocals: true,
noFallthroughCasesInSwitch: true,
noImplicitThis: true,
typeRoots: ["node_modules/@types"]
});
Any tips appreciated!