Skip to content

Commit a1514d3

Browse files
committed
deps & ext
1 parent cb86aea commit a1514d3

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

buildTsPlugin.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const buildTsPlugin = async (/** @type {string} */ outDir, /** @type {str
1919
)
2020
await build({
2121
bundle: true,
22+
// TODO change to browser
2223
platform: 'node',
2324
treeShaking: true,
2425
format: 'cjs',
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "correct-suggestions-sorting",
3+
"displayName": "Correct Suggestions Sorting",
4+
"publisher": "zardoy",
5+
"version": "0.0.1",
6+
"license": "MIT",
7+
"categories": [
8+
"Programming Languages"
9+
],
10+
"keywords": [
11+
"ts",
12+
"typescript",
13+
"typescript plugin",
14+
"fix sort"
15+
],
16+
"contributes": {},
17+
"activationEvents": [
18+
"*"
19+
],
20+
"scripts": {
21+
"start": "vscode-framework start"
22+
},
23+
"devDependencies": {
24+
"@types/vscode": "1.62.0",
25+
"vscode-framework": "^0.0.18"
26+
}
27+
}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,15 @@
2222
"lint": "eslint src/**"
2323
},
2424
"devDependencies": {
25+
"@types/fs-extra": "^9.0.13",
2526
"@types/node": "^16.11.21",
2627
"@types/vscode": "^1.63.1",
2728
"@zardoy/tsconfig": "^1.3.1",
28-
"my-typescript-plugin-id": "workspace:*",
29+
"esbuild": "^0.14.38",
30+
"fs-extra": "^10.1.0",
31+
"my-typescript-plugin-1": "workspace:*",
32+
"my-typescript-plugin-2": "workspace:*",
33+
"typed-jsonfile": "^0.2.1",
2934
"typescript": "^4.5.4"
3035
},
3136
"dependencies": {

0 commit comments

Comments
 (0)