add day 56

This commit is contained in:
Zoe
2022-11-17 21:15:29 -06:00
parent b5cf6f8ed6
commit 855ef8fd69
46 changed files with 11704 additions and 0 deletions

28
day56/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"],
}