typespec-vscode 0.62.0-dev.1 → 0.62.0-dev.3
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 +12 -4
- package/typespec-vscode-0.61.0.vsix +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.62.0-dev.
|
|
3
|
+
"version": "0.62.0-dev.3",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"publisher": "typespec",
|
|
21
21
|
"displayName": "TypeSpec for VS Code",
|
|
22
22
|
"categories": [
|
|
23
|
-
"Programming Languages"
|
|
23
|
+
"Programming Languages",
|
|
24
|
+
"Snippets"
|
|
24
25
|
],
|
|
25
26
|
"type": "module",
|
|
26
27
|
"main": "./dist/src/extension.cjs",
|
|
@@ -30,7 +31,8 @@
|
|
|
30
31
|
},
|
|
31
32
|
"activationEvents": [
|
|
32
33
|
"onLanguage:typespec",
|
|
33
|
-
"onCommand:typespec.restartServer"
|
|
34
|
+
"onCommand:typespec.restartServer",
|
|
35
|
+
"workspaceContains:**/tspconfig.yaml"
|
|
34
36
|
],
|
|
35
37
|
"icon": "./icons/logo.png",
|
|
36
38
|
"contributes": {
|
|
@@ -141,6 +143,12 @@
|
|
|
141
143
|
}
|
|
142
144
|
}
|
|
143
145
|
}
|
|
146
|
+
],
|
|
147
|
+
"snippets": [
|
|
148
|
+
{
|
|
149
|
+
"language": "typespec",
|
|
150
|
+
"path": "./snippets.json"
|
|
151
|
+
}
|
|
144
152
|
]
|
|
145
153
|
},
|
|
146
154
|
"devDependencies": {
|
|
@@ -150,7 +158,7 @@
|
|
|
150
158
|
"@types/mocha": "^10.0.9",
|
|
151
159
|
"@types/node": "~22.7.5",
|
|
152
160
|
"@types/vscode": "~1.94.0",
|
|
153
|
-
"@typespec/compiler": "~0.61.
|
|
161
|
+
"@typespec/compiler": "~0.61.2 || >=0.62.0-dev <0.62.0",
|
|
154
162
|
"@typespec/internal-build-utils": "~0.61.0 || >=0.62.0-dev <0.62.0",
|
|
155
163
|
"@vitest/coverage-v8": "^2.1.2",
|
|
156
164
|
"@vitest/ui": "^2.1.2",
|
|
Binary file
|