Prototype my digital habits journal

Trying to obviate my Google Sheets spreadsheet in favor of a more focused web
app.
This commit is contained in:
William Carroll 2020-03-30 20:28:38 +01:00
parent 8d36c6d00f
commit af969a7641
15 changed files with 5904 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{
"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/**/*"
]
}