add day 79 (finally object reactive data)

This commit is contained in:
Zoe
2022-12-10 20:27:04 -06:00
parent a7f59529b7
commit 7598643b68
48 changed files with 12218 additions and 0 deletions

28
day79/tsconfig.json Normal file
View File

@@ -0,0 +1,28 @@
{
"compilerOptions": {
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"declaration": true,
"declarationMap": true,
"target": "ES2022",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
"allowJs": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"noEmit": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"jsx": "preserve",
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
},
"include": ["src/**/*", "types/**/*", "index.ts", "node_modules/vite/types/*", "next-env.d.ts"],
}