initial convert to TS. No major logic changes, just type safety.

This commit is contained in:
Charlie Laabs
2019-12-22 23:18:43 -06:00
parent 3b44ab098d
commit 19edcc199c
8 changed files with 955 additions and 422 deletions

18
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"eslint.validate": [
"javascript",
"typescript"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false,
},
"[typescript]": {
"editor.formatOnSave": false,
},
"eslint.enable": true,
"typescript.tsdk": "node_modules\\typescript\\lib",
}