Update extension to use react app

This commit is contained in:
Saoud Rizwan
2024-07-06 02:05:43 -04:00
parent 571c7d217e
commit cd8bbc5c7f
4 changed files with 83 additions and 40 deletions

View File

@@ -65,7 +65,11 @@
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts",
"test": "vscode-test"
"test": "vscode-test",
"install:all": "npm install && cd webview-ui && npm install",
"start:webview": "cd webview-ui && npm run start",
"build:webview": "cd webview-ui && npm run build",
"test:webview": "cd webview-ui && npm run test"
},
"devDependencies": {
"@types/mocha": "^10.0.7",