1
0

Initial commit

This commit is contained in:
2025-12-16 20:39:11 +00:00
commit 8ae9352aa1
70 changed files with 3898 additions and 0 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"outDir": "dist",
"allowJs": true,
"noImplicitAny": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": "src",
"paths": {
"@code/*": ["day1/*"]
},
"types": ["vitest/globals"]
},
"include": ["./src/**/*"],
"exclude": ["node_modules"]
}