@ttsc/vscode 0.21.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/ttsc-vscode-0.23.0.vsix +0 -0
- package/lib/extension.js +13718 -8715
- package/package.json +7 -7
- package/dist/ttsc-vscode-0.21.0.vsix +0 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ttsc/vscode",
|
|
3
3
|
"displayName": "ttsc",
|
|
4
4
|
"description": "TypeScript-Go and ttsc plugin diagnostics, completions, lint actions, and formatting for VS Code.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.23.0",
|
|
6
6
|
"publisher": "samchon",
|
|
7
7
|
"icon": "images/icon.png",
|
|
8
8
|
"license": "MIT",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"ttsc.serverPath": {
|
|
82
82
|
"type": "string",
|
|
83
83
|
"default": "",
|
|
84
|
-
"description": "Absolute path to a ttscserver launcher, native binary, or Windows .cmd/.bat command shim. Leave empty to use the project ttsc launcher, which
|
|
84
|
+
"description": "Absolute path to a ttscserver launcher, native binary, or Windows .cmd/.bat command shim. Leave empty to use the project ttsc launcher, which passes the resolved plugin manifest through --lsp-plugins-file for plugin diagnostics/actions; direct native paths need that manifest supplied out of band via TTSC_LSP_PLUGINS_FILE.",
|
|
85
85
|
"scope": "resource"
|
|
86
86
|
},
|
|
87
87
|
"ttsc.trace.server": {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"verbose"
|
|
93
93
|
],
|
|
94
94
|
"default": "off",
|
|
95
|
-
"description": "Trace LSP messages between VS Code and ttscserver."
|
|
95
|
+
"description": "Trace LSP messages between VS Code and ttscserver when the ttsc (trace) output channel log level is Trace."
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -100,14 +100,14 @@
|
|
|
100
100
|
"devDependencies": {
|
|
101
101
|
"@types/node": "^25.3.0",
|
|
102
102
|
"@types/vscode": "^1.94.0",
|
|
103
|
-
"@vscode/vsce": "^3.
|
|
103
|
+
"@vscode/vsce": "^3.9.2",
|
|
104
104
|
"esbuild": "^0.25.12",
|
|
105
105
|
"rimraf": "^6.1.2",
|
|
106
106
|
"typescript": "^7.0.2",
|
|
107
|
-
"vscode-languageclient": "^
|
|
108
|
-
"ttsc": "0.
|
|
107
|
+
"vscode-languageclient": "^10.1.0",
|
|
108
|
+
"ttsc": "0.23.0"
|
|
109
109
|
},
|
|
110
110
|
"scripts": {
|
|
111
|
-
"build": "rimraf lib dist && node build/build.cjs"
|
|
111
|
+
"build": "tsc --noEmit && rimraf lib dist && node build/build.cjs"
|
|
112
112
|
}
|
|
113
113
|
}
|
|
Binary file
|