Initial commit

This commit is contained in:
Thomas Nordquist
2018-12-28 15:25:25 +01:00
commit 0af3a2ede3
21 changed files with 2892 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"outDir": "./build",
"strict": true,
"lib": ["es2017"],
"sourceMap": true
}
}