Convert app to typescript

This commit is contained in:
hensm
2019-02-25 01:00:33 +00:00
parent db7edb70bb
commit e4dffe0cce
15 changed files with 585 additions and 2226 deletions

14
app/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"allowJs": true
, "target": "es5"
, "noImplicitAny": true
, "esModuleInterop": true
, "resolveJsonModule": true
, "removeComments": true
}
, "include": [
"./src/**/*"
, "./@types/**/*"
]
}