2.3.0
This commit is contained in:
+33
-6
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "tsl-devkit",
|
||||
"name": "tsl-tools",
|
||||
"displayName": "TSL",
|
||||
"version": "2.2.0",
|
||||
"description": "TSL syntax highlighter support for VSCode.",
|
||||
"version": "2.3.0",
|
||||
"description": "VSCode extension for TSL, with syntax highlighting, code completion, and formatting",
|
||||
"publisher": "csh",
|
||||
"homepage": "https://git.mytsl.cn/csh/tsl-devkit",
|
||||
"author": {
|
||||
@@ -46,6 +46,33 @@
|
||||
"path": "./syntaxes/tsl.tmLanguage.json"
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "TSL",
|
||||
"properties": {
|
||||
"tsl.server.executable": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Path to tsl-server executable (leave empty for auto-detection)"
|
||||
},
|
||||
"tsl.server.arguments": {
|
||||
"type": "array",
|
||||
"default": [
|
||||
"--log=info",
|
||||
"--log-stderr"
|
||||
],
|
||||
"description": "Arguments for TSL server",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"tsl.interpreter.executable": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Path to TSL interpreter executable (leave empty for auto-detection)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"command": "extension.start",
|
||||
@@ -59,11 +86,11 @@
|
||||
"watch": "tsc -watch -p ."
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vscode/vsce": "^3.5.0",
|
||||
"typescript": "^5.8.3",
|
||||
"@types/node": "^24.0.3",
|
||||
"@types/vscode": "^1.101.0",
|
||||
"prettier": "^3.5.3"
|
||||
"@vscode/vsce": "^3.6.0",
|
||||
"prettier": "^3.5.3",
|
||||
"typescript": "^5.8.3"
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.101.0"
|
||||
|
||||
Reference in New Issue
Block a user