feat(api): add rudimentary web control panel (#183)

This commit is contained in:
Mark Dietzer
2020-10-25 06:36:02 -07:00
committed by GitHub
parent 83f82d66d9
commit 373d1a9738
9 changed files with 395 additions and 40 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "es5",
"target": "es2019",
"module": "commonjs",
"lib": ["es6", "dom"],
"lib": ["dom", "es2019", "es2020.bigint", "es2020.string", "es2020.symbol.wellknown"],
"allowJs": true,
"outDir": "build",
"rootDir": "src",
@@ -12,6 +12,6 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true
"sourceMap": true
}
}