We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2fee7 commit a9d7101Copy full SHA for a9d7101
packages/next/src/build/swc/index.ts
@@ -608,7 +608,7 @@ export interface TurbopackStackFrame {
608
/** 1-indexed, unlike source map tokens */
609
line?: number
610
611
- column?: number
+ column?: number | null
612
methodName?: string
613
}
614
packages/next/src/client/components/react-dev-overlay/server/shared.ts
@@ -1,6 +1,6 @@
1
+import type { StackFrame } from 'stacktrace-parser'
2
import type { ServerResponse } from 'http'
3
import { codeFrameColumns } from 'next/dist/compiled/babel/code-frame'
-import type { StackFrame } from 'next/dist/compiled/stacktrace-parser'
4
5
export type SourcePackage = 'react' | 'next'
6
0 commit comments