First commit

This commit is contained in:
Daniel Ledda
2020-06-23 23:45:44 +02:00
commit 2381f43d38
28 changed files with 8385 additions and 0 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"outDir": "./build/",
"noImplicitAny": true,
"module": "esnext",
"target": "es5",
"jsx": "react",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"downlevelIteration": true
},
"lib": [
"dom",
"dom.iterable",
"esnext"
]
}