feat(web-client): implement a basic web client

This commit is contained in:
M. George Hansen 2022-05-08 23:45:18 -07:00
parent 991b82d750
commit 8b8f84ede1
Signed by: mgeorgehansen
SSH key fingerprint: SHA256:JlIGiQLPyQ2RHTH3a2oVlb20Xkh9Glr8DUF4YTXHJxM
13 changed files with 12506 additions and 9 deletions

9
web-client/tsconfig.json Normal file
View file

@ -0,0 +1,9 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true
}
}