feat: Timeline UI (#2830)

This commit is contained in:
JohnMark Sill
2022-02-27 08:04:12 -06:00
committed by GitHub
parent 4004048add
commit 3e07d4eddb
54 changed files with 1950 additions and 50 deletions

15
web/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2019",
"jsx": "react",
"jsxFactory": "h",
"lib": [
"ES2019"
]
},
"include": [
"./src/**/*.tsx",
"./src/**/*.ts"
]
}