@ttsc/vscode 0.13.1 → 0.14.0-dev.20250530.1
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 +29 -39
- package/bin/install.js +89 -23
- package/dist/ttsc-vscode-0.14.0-dev.20250530.1.vsix +0 -0
- package/lib/extension.js +1294 -640
- package/package.json +14 -14
- package/dist/ttsc-vscode-0.13.1.vsix +0 -0
- package/lib/extension.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttsc/vscode",
|
|
3
3
|
"displayName": "ttsc",
|
|
4
|
-
"description": "Run ttscserver
|
|
5
|
-
"version": "0.
|
|
4
|
+
"description": "Run the project-selected ttscserver in VS Code with TypeScript-Go and ttsc plugin LSP features.",
|
|
5
|
+
"version": "0.14.0-dev.20250530.1",
|
|
6
6
|
"publisher": "samchon",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "Jeongho Nam",
|
|
@@ -19,9 +19,10 @@
|
|
|
19
19
|
"node": ">=18"
|
|
20
20
|
},
|
|
21
21
|
"categories": [
|
|
22
|
-
"Programming Languages"
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
"Programming Languages"
|
|
23
|
+
],
|
|
24
|
+
"extensionKind": [
|
|
25
|
+
"workspace"
|
|
25
26
|
],
|
|
26
27
|
"main": "./lib/extension.js",
|
|
27
28
|
"bin": {
|
|
@@ -44,11 +45,11 @@
|
|
|
44
45
|
"commands": [
|
|
45
46
|
{
|
|
46
47
|
"command": "ttsc.lint.fixAll",
|
|
47
|
-
"title": "ttsc:
|
|
48
|
+
"title": "ttsc: Fix all lint issues"
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
"command": "ttsc.format.document",
|
|
51
|
-
"title": "ttsc: Format
|
|
52
|
+
"title": "ttsc: Format document"
|
|
52
53
|
},
|
|
53
54
|
{
|
|
54
55
|
"command": "ttsc.server.restart",
|
|
@@ -61,7 +62,8 @@
|
|
|
61
62
|
"ttsc.serverPath": {
|
|
62
63
|
"type": "string",
|
|
63
64
|
"default": "",
|
|
64
|
-
"description": "Absolute path to
|
|
65
|
+
"description": "Absolute path to a ttscserver launcher or native binary. Leave empty to use the project ttsc launcher, which builds TTSC_LSP_PLUGINS_JSON for plugin diagnostics/actions; direct native paths need that manifest supplied out of band.",
|
|
66
|
+
"scope": "resource"
|
|
65
67
|
},
|
|
66
68
|
"ttsc.trace.server": {
|
|
67
69
|
"type": "string",
|
|
@@ -71,22 +73,20 @@
|
|
|
71
73
|
"verbose"
|
|
72
74
|
],
|
|
73
75
|
"default": "off",
|
|
74
|
-
"description": "Trace LSP messages between
|
|
76
|
+
"description": "Trace LSP messages between VS Code and ttscserver."
|
|
75
77
|
}
|
|
76
78
|
}
|
|
77
79
|
}
|
|
78
80
|
},
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"vscode-languageclient": "^9.0.1"
|
|
81
|
-
},
|
|
82
81
|
"devDependencies": {
|
|
83
82
|
"@types/node": "^25.3.0",
|
|
84
83
|
"@types/vscode": "^1.94.0",
|
|
85
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
84
|
+
"@typescript/native-preview": "7.0.0-dev.20260527.2",
|
|
86
85
|
"@vscode/vsce": "^3.6.1",
|
|
87
86
|
"esbuild": "^0.25.12",
|
|
88
87
|
"rimraf": "^6.1.2",
|
|
89
|
-
"
|
|
88
|
+
"vscode-languageclient": "^9.0.1",
|
|
89
|
+
"ttsc": "0.14.0-dev.20250530.1"
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|
|
92
92
|
"build": "rimraf lib dist && node build/build.cjs"
|
|
Binary file
|