This commit is contained in:
daydreamer-json
2026-01-22 18:48:17 +09:00
commit b9c2d4253a
39 changed files with 3346 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": [
// "@tsconfig/bun",
"@tsconfig/recommended",
"@tsconfig/node24",
"@tsconfig/strictest"
],
"compilerOptions": {
"outDir": "./dist",
"sourceMap": false,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}