@ttsc/vscode 0.11.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/LICENSE +21 -0
- package/README.md +39 -0
- package/bin/install.js +44 -0
- package/dist/ttsc-vscode-0.11.0.vsix +0 -0
- package/lib/extension.js +18258 -0
- package/lib/extension.js.map +7 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ttsc/vscode",
|
|
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.11.0",
|
|
6
|
+
"publisher": "samchon",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "Jeongho Nam",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/samchon/ttsc",
|
|
15
|
+
"directory": "packages/vscode"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"vscode": "^1.94.0",
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"categories": [
|
|
22
|
+
"Programming Languages",
|
|
23
|
+
"Linters",
|
|
24
|
+
"Formatters"
|
|
25
|
+
],
|
|
26
|
+
"main": "./lib/extension.js",
|
|
27
|
+
"bin": {
|
|
28
|
+
"ttsc-vscode": "./bin/install.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"bin",
|
|
32
|
+
"dist",
|
|
33
|
+
"lib",
|
|
34
|
+
"LICENSE",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
37
|
+
"activationEvents": [
|
|
38
|
+
"onLanguage:typescript",
|
|
39
|
+
"onLanguage:typescriptreact",
|
|
40
|
+
"onLanguage:javascript",
|
|
41
|
+
"onLanguage:javascriptreact"
|
|
42
|
+
],
|
|
43
|
+
"contributes": {
|
|
44
|
+
"commands": [
|
|
45
|
+
{
|
|
46
|
+
"command": "ttsc.lint.fixAll",
|
|
47
|
+
"title": "ttsc: Apply lint fixes to current file"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"command": "ttsc.format.document",
|
|
51
|
+
"title": "ttsc: Format current document"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"command": "ttsc.server.restart",
|
|
55
|
+
"title": "ttsc: Restart language server"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"configuration": {
|
|
59
|
+
"title": "ttsc",
|
|
60
|
+
"properties": {
|
|
61
|
+
"ttsc.serverPath": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"default": "",
|
|
64
|
+
"description": "Absolute path to the ttscserver binary. Leave empty to resolve the binary shipped with the workspace's ttsc dependency."
|
|
65
|
+
},
|
|
66
|
+
"ttsc.trace.server": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"enum": [
|
|
69
|
+
"off",
|
|
70
|
+
"messages",
|
|
71
|
+
"verbose"
|
|
72
|
+
],
|
|
73
|
+
"default": "off",
|
|
74
|
+
"description": "Trace LSP messages between VSCode and ttscserver."
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"vscode-languageclient": "^9.0.1"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@types/node": "^25.3.0",
|
|
84
|
+
"@types/vscode": "^1.94.0",
|
|
85
|
+
"@typescript/native-preview": "7.0.0-dev.20260515.1",
|
|
86
|
+
"@vscode/vsce": "^3.6.1",
|
|
87
|
+
"esbuild": "^0.25.12",
|
|
88
|
+
"rimraf": "^6.1.2",
|
|
89
|
+
"ttsc": "0.11.0"
|
|
90
|
+
},
|
|
91
|
+
"scripts": {
|
|
92
|
+
"build": "rimraf lib dist && node build/build.cjs"
|
|
93
|
+
}
|
|
94
|
+
}
|