Started conversion to TypeScript.

This commit is contained in:
Ajay Ramachandran
2020-01-28 22:16:48 -05:00
parent 5837205a9a
commit 03836b69f2
52 changed files with 5729 additions and 418 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": false,
"sourceMap": false,
"rootDir": "src",
"outDir": "dist/js",
"noEmitOnError": true,
"typeRoots": [ "node_modules/@types" ]
}
}