Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: TypeScript と Biome の設定を React Router 用に調整
フレームワーク移行に合わせて設定ファイルを更新しました。

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
  • Loading branch information
gn-t-k and claude committed Jul 21, 2025
commit eb9fbc8c469a1d95d82b97aa2251f92ad51ef4d0
20 changes: 12 additions & 8 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"extends": "@configs/next/tsconfig/tsconfig.json",
"files": [],
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "./tsconfig.cloudflare.json" }
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"checkJs": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"types": ["./worker-configuration.d.ts"]
}
}
2 changes: 1 addition & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"files": {
"ignoreUnknown": false,
"includes": ["**", "!**/.next/**", "!**/dist/**", "!**/node_modules/**"]
"includes": ["**", "!**/dist/**", "!**/build/**", "!**/node_modules/**"]
},
"formatter": {
"enabled": true,
Expand Down
Loading