@ttsc/vscode 0.13.1 → 0.14.0-dev.20260528.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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ttsc/vscode",
3
3
  "displayName": "ttsc",
4
- "description": "Run ttscserver as a Language Server for TypeScript-Go projects, with lint/format plugin diagnostics merged into VSCode.",
5
- "version": "0.13.1",
4
+ "description": "Run the project-selected ttscserver in VS Code with TypeScript-Go and ttsc plugin LSP features.",
5
+ "version": "0.14.0-dev.20260528.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
- "Linters",
24
- "Formatters"
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: Apply lint fixes to current file"
48
+ "title": "ttsc: Fix all lint issues"
48
49
  },
49
50
  {
50
51
  "command": "ttsc.format.document",
51
- "title": "ttsc: Format current document"
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 the ttscserver binary. Leave empty to resolve the binary shipped with the workspace's ttsc dependency."
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 VSCode and ttscserver."
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.20260522.1",
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
- "ttsc": "0.13.1"
88
+ "vscode-languageclient": "^9.0.1",
89
+ "ttsc": "0.14.0-dev.20260528.1"
90
90
  },
91
91
  "scripts": {
92
92
  "build": "rimraf lib dist && node build/build.cjs"
Binary file