forked from microsoft/typescript-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.95 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "native-preview",
"displayName": "TypeScript (Native Preview)",
"publisher": "TypeScriptTeam",
"author": "Microsoft Corp.",
"description": "Preview of the native TypeScript language server for Visual Studio Code.",
"icon": "logo.png",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/typescript-go"
},
"engines": {
"vscode": "^1.100.0"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": false
}
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"configuration": [
{
"title": "TypeScript Native Preview",
"properties": {
"typescript.native-preview.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Trace TypeScript Go server communication.",
"tags": ["experimental"]
},
"typescript.native-preview.pprofDir": {
"type": "string",
"description": "Directory to write pprof profiles to.",
"tags": ["experimental"]
},
"typescript.native-preview.tsdk": {
"type": "string",
"description": "Path to the @typescript/native-preview package or tsgo binary directory. If not specified, the extension will look for it in the default location.",
"tags": ["experimental"]
}
}
}
],
"commands": [
{
"command": "typescript.native-preview.enable",
"title": "Enable (Experimental)",
"enablement": "!typescript.native-preview.serverRunning",
"category": "TypeScript Native Preview"
},
{
"command": "typescript.native-preview.disable",
"title": "Disable",
"enablement": "typescript.native-preview.serverRunning",
"category": "TypeScript Native Preview"
},
{
"command": "typescript.native-preview.restart",
"title": "Restart Language Server",
"enablement": "typescript.native-preview.serverRunning",
"category": "TypeScript Native Preview"
},
{
"command": "typescript.native-preview.output.focus",
"title": "Show Output",
"enablement": "typescript.native-preview.serverRunning",
"category": "TypeScript Native Preview"
},
{
"command": "typescript.native-preview.lsp-trace.focus",
"title": "Show LSP Trace",
"enablement": "typescript.native-preview.serverRunning",
"category": "TypeScript Native Preview"
}
]
},
"main": "./dist/extension.js",
"files": [
"dist/extension.bundle.js",
"lib",
"LICENSE",
"NOTICE.txt",
"logo.png"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"bundle": "esbuild src/extension.ts --bundle --external:vscode --platform=node --format=cjs --outfile=dist/extension.bundle.js --minify"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/vscode": "^1.100.0",
"@vscode/vsce": "^3.6.2",
"esbuild": "^0.25.10"
}
}