fix type import issue

This commit is contained in:
mbecker20
2022-12-26 22:21:08 +00:00
parent 3c055544cc
commit eb79e8726d
4 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
target
/frontend/build
node_modules
dist
.env

2
.vscode/tasks.json vendored
View File

@@ -155,7 +155,7 @@
},
{
"type": "shell",
"command": "typeshare ./lib/types --lang=typescript --output-file=./frontend/src/types.d.ts && typeshare ./core --lang=typescript --output-file=./frontend/src/util/client_types.d.ts",
"command": "typeshare ./lib/types --lang=typescript --output-file=./frontend/src/types.ts && typeshare ./core --lang=typescript --output-file=./frontend/src/util/client_types.ts",
"label": "generate typescript types",
"problemMatcher": []
}