TS, Prettier, Eslint (#39)

* TS, Prettier, Eslint

* Used rough ts definitions
This commit is contained in:
Timur Khazamov
2020-01-02 11:03:48 -08:00
committed by Christopher Chedeau
parent 4eda1cfb5d
commit 1383758aa7
6 changed files with 2304 additions and 1469 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": ["src"]
}