typespec-vscode 1.1.0-dev.11 → 1.1.0-dev.12
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "1.1.0-dev.
|
|
3
|
+
"version": "1.1.0-dev.12",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -28,6 +28,11 @@
|
|
|
28
28
|
"engines": {
|
|
29
29
|
"vscode": "^1.100.0"
|
|
30
30
|
},
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/declaration/src/index.d.ts"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
31
36
|
"activationEvents": [
|
|
32
37
|
"onLanguage:typespec",
|
|
33
38
|
"onCommand:typespec.restartServer",
|
|
@@ -271,8 +276,9 @@
|
|
|
271
276
|
"peerDependencies": {},
|
|
272
277
|
"scripts": {
|
|
273
278
|
"clean": "rimraf ./dist ./temp",
|
|
274
|
-
"build": "pnpm compile && pnpm check && pnpm copy-templates && pnpm copy-tmlanguage && pnpm generate-language-configuration && pnpm generate-third-party-notices && pnpm package-vsix",
|
|
279
|
+
"build": "pnpm compile && pnpm check && pnpm declaration-only && pnpm copy-templates && pnpm copy-tmlanguage && pnpm generate-language-configuration && pnpm generate-third-party-notices && pnpm package-vsix",
|
|
275
280
|
"check": "tsc --noEmit",
|
|
281
|
+
"declaration-only": "tsc --project tsconfig.declaration.json",
|
|
276
282
|
"compile": "tsx ./scripts/build.ts",
|
|
277
283
|
"watch": "tsx ./scripts/build.ts --watch",
|
|
278
284
|
"dogfood": "node scripts/dogfood.js",
|
|
Binary file
|