Initial commit

This commit is contained in:
Horacio Gonzalez
2020-10-14 14:21:46 +02:00
commit 5a3f6a3161
142 changed files with 17690 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": [
"dom",
"es2015"
],
"sourceMap": false,
"rootDir": "src/script",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": false
}
}