Start adding Typescript support

This commit is contained in:
Alex Gleason
2021-11-04 19:28:04 -05:00
parent b648861309
commit f826d620b4
10 changed files with 204 additions and 80 deletions

13
tsconfig.json Normal file
View File

@ -0,0 +1,13 @@
{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true
}
}