Skip to content

Commit

Permalink
fix(react-router): Fix config type import (#15583)
Browse files Browse the repository at this point in the history
---------
Co-authored-by: Charly Gomez <charly.gomez@sentry.io>
  • Loading branch information
namoscato authored Mar 6, 2025
1 parent f377496 commit 07d23bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { rm } from 'node:fs/promises';
import type { Config } from '@react-router/dev/dist/config';
import type { Config } from '@react-router/dev/config';
import SentryCli from '@sentry/cli';
import { glob } from 'glob';
import type { SentryReactRouterBuildOptions } from '../types';
Expand Down
4 changes: 3 additions & 1 deletion packages/react-router/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@

"include": ["src/**/*"],

"compilerOptions": {}
"compilerOptions": {
"moduleResolution": "bundler"
}
}

0 comments on commit 07d23bf

Please sign in to comment.