Serhii Prodan

Results 4 comments of Serhii Prodan

Nothing here helps to solve it: jest.config.ts ``` const config: Config.InitialOptions = { verbose: true, testEnvironment: "jsdom", testPathIgnorePatterns: ["/node_modules/"], setupFilesAfterEnv: ["/jest-setup.ts"], testRegex: ".test.(tsx?)$", transform: { "^.+\\.tsx?$": "ts-jest", }, transformIgnorePatterns: ["/node_modules/(?!react-dnd|dnd-core|react-dnd-html5-backend)"],...

Here is the approach I've applied to fixed a problem on my side: tsconfig.json ``` "compilerOptions": { ... "allowJs": true }, ``` jest.config.ts ``` const config: Config.InitialOptions = { verbose:...

This suggestion https://github.com/getsentry/sentry-javascript/issues/12660#issuecomment-2312154392 seems to not solve the same problem in my case. I had to disable sourcemaps at all following the @lforst tip. I hope this will be resolved...

> Hi, [@ProdanSergey](https://github.com/ProdanSergey) no updates at this time. To our knowledge, this unfortunately is still a limitation of the Vercel platform Hello, @Lms24. Is Vercel team aware of it?