mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 09:20:10 +01:00
| .. | ||
| .github/workflows | ||
| .vscode | ||
| src | ||
| test | ||
| build.js | ||
| package.json | ||
| README.md | ||
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';
