- Fix createRequestHandler → createRequestListener (@react-router/node removed the old API) - Move noEmit + allowImportingTsExtensions to tsconfig.base.json so all packages and apps inherit them consistently - Add explicit .ts extensions to all remaining relative imports across packages and apps Verified locally: node --experimental-strip-types server.ts starts and responds 200. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
318 B
JSON
16 lines
318 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".react-router/types/**/*"
|
|
],
|
|
"exclude": ["build", "node_modules"],
|
|
"compilerOptions": {
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
}
|
|
}
|
|
}
|