mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 08:10:11 +01:00
613 B
613 B
Monaco Languages
Colorization and configuration supports for multiple languages for the Monaco Editor:
Development
- watch with
npm run watch - compile with
npm run prepublishOnly - test with
npm run test
Dev: Adding a new language
- create
$/src/myLang/myLang.contribution.ts - create
$/src/myLang/myLang.ts - create
$/src/myLang/myLang.test.ts - edit
$/src/monaco.contribution.tsand register your new language
import './myLang/myLang.contribution';
