Enable typescript support

This commit is contained in:
2022-01-31 20:47:32 +00:00
parent a7178e39c9
commit e0981630ab
3 changed files with 2592 additions and 52 deletions

10
web/tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node"
}
}