Make react build task; add react-textarea-autosize; add settings button; add settings page; get basic chat interface working

This commit is contained in:
Saoud Rizwan
2024-07-07 05:05:28 -04:00
parent b0f93bffe9
commit 08effc4799
10 changed files with 247 additions and 93 deletions

13
.vscode/tasks.json vendored
View File

@@ -6,6 +6,7 @@
{
"label": "watch",
"dependsOn": [
"npm: build:webview",
"npm: watch:tsc",
"npm: watch:esbuild"
],
@@ -17,6 +18,18 @@
"isDefault": true
}
},
{
"type": "npm",
"script": "build:webview",
"group": "build",
"problemMatcher": [],
"isBackground": true,
"label": "npm: build:webview",
"presentation": {
"group": "watch",
"reveal": "never"
}
},
{
"type": "npm",
"script": "watch:esbuild",