feat: setup for intelliwacc ide with syntax highlights

This commit is contained in:
Guy C
2025-03-03 12:26:53 +00:00
parent f896cbb0dd
commit c2259334c1
9 changed files with 276 additions and 0 deletions

32
wacc-syntax/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "wacc-syntax",
"displayName": "intelliWACC",
"description": "WACC language support features",
"version": "0.0.1",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "wacc",
"aliases": ["WACC", "wacc"],
"extensions": [".wacc"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "wacc",
"scopeName": "source.wacc",
"path": "./syntaxes/wacc.tmLanguage.json"
}]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"build": "vsce package"
},
"main": "./extension.js"
}