Skip to content

Commit eb9fbc8

Browse files
gn-t-kclaude
andcommitted
chore: TypeScript と Biome の設定を React Router 用に調整
フレームワーク移行に合わせて設定ファイルを更新しました。 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9b5c900 commit eb9fbc8

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

apps/web/tsconfig.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
2-
"extends": "@configs/next/tsconfig/tsconfig.json",
2+
"files": [],
3+
"references": [
4+
{ "path": "./tsconfig.node.json" },
5+
{ "path": "./tsconfig.cloudflare.json" }
6+
],
37
"compilerOptions": {
4-
"baseUrl": ".",
5-
"paths": {
6-
"@/*": ["./src/*"]
7-
}
8-
},
9-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
10-
"exclude": ["node_modules"]
8+
"checkJs": true,
9+
"verbatimModuleSyntax": true,
10+
"skipLibCheck": true,
11+
"strict": true,
12+
"noEmit": true,
13+
"types": ["./worker-configuration.d.ts"]
14+
}
1115
}

biome.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"files": {
99
"ignoreUnknown": false,
10-
"includes": ["**", "!**/.next/**", "!**/dist/**", "!**/node_modules/**"]
10+
"includes": ["**", "!**/dist/**", "!**/build/**", "!**/node_modules/**"]
1111
},
1212
"formatter": {
1313
"enabled": true,

0 commit comments

Comments
 (0)