diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-10 03:01:44 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-10 03:33:22 +0900 |
| commit | a3a2bc9dc1c339e26cf93e3b510f280acaab5027 (patch) | |
| tree | 91537e7a9bf9d3edf462e278b0415f17b39192d7 /frontend/tsconfig.json | |
| parent | c44b3383a7e55553cc95bba7bd5574f71c2e3406 (diff) | |
| download | phperkaigi-2025-albatross-a3a2bc9dc1c339e26cf93e3b510f280acaab5027.tar.gz phperkaigi-2025-albatross-a3a2bc9dc1c339e26cf93e3b510f280acaab5027.tar.zst phperkaigi-2025-albatross-a3a2bc9dc1c339e26cf93e3b510f280acaab5027.zip | |
feat(fontend): migrate from Remix to React Router
Diffstat (limited to 'frontend/tsconfig.json')
| -rw-r--r-- | frontend/tsconfig.json | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 33e429f..9575a13 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -1,20 +1,18 @@ { "include": [ - "**/*.ts", - "**/*.tsx", - "**/.server/**/*.ts", - "**/.server/**/*.tsx", - "**/.client/**/*.ts", - "**/.client/**/*.tsx" + "**/*", + "**/.server/**/*", + "**/.client/**/*", + ".react-router/types/**/*" ], "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2022"], - "types": ["@remix-run/node", "vite/client"], + "types": ["node", "vite/client"], "isolatedModules": true, "esModuleInterop": true, "jsx": "react-jsx", "module": "ESNext", - "moduleResolution": "Bundler", + "moduleResolution": "bundler", "resolveJsonModule": true, "target": "ES2022", "strict": true, @@ -26,6 +24,7 @@ "paths": { "~/*": ["./app/*"] }, + "rootDirs": [".", "./.react-router/types"], "noEmit": true } } |
