Begin refactoring to TypeScript

This commit is contained in:
Matthew Oslan
2019-05-09 00:55:37 -04:00
parent 39a58a9f91
commit 6acb40eed1
6 changed files with 135 additions and 4 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "es6",
"noImplicitReturns": true,
"noEmitOnError": true,
"outDir": "js/",
"sourceMap": true,
"skipLibCheck": true
},
"include": [
"server.ts",
"routes/**/*"
]
}