Created
December 11, 2019 21:36
-
-
Save amazzalel-habib/687016b8c87b34c6d6460a52360984dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as monaco from "monaco-editor-core"; | |
import { languageExtensionPoint, languageID } from "./config"; | |
export function setupLanguage() { | |
monaco.languages.register(languageExtensionPoint); | |
monaco.languages.onLanguage(languageID, () => { | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment