Dmitriy Fuks

Results 36 comments of Dmitriy Fuks

I removed js processing from ts-loader and everything worked as expected. As I understand it, this is the expected behavior: https://github.com/TypeStrong/ts-loader/issues/465

Very much I wait for TS support. Is not enough for this Frankenstein - https://github.com/DiFuks/vue.tsx

@kyle-mccarthy How does getServerSideProps work? In ctx.query I am getting an empty object and my nest controller is not being called

It is worth clarifying that everything works fine with server rendering. This problem occurs when switching between pages and requests like /_next/data/development/Main.json

In pnp mode this can be solved by adding the following lines to yarnrc.yml ```yml packageExtensions: webpack-cli@*: dependencies: webpack: "*" ```

The reason for this problem is that webpack generates a css file for every chunk loaded with lazy-load. But after switching between pages, react does not remove already included css...

@wiegell Your code contains an error that could lead to very serious problems (we've already encountered one). `wrapScriptExecution` does not return a `Promise` as [stated in the documentation](https://www.yarnpkg.cn/advanced/plugin-tutorial#hook-wrapScriptExecution). You wrap...

I submitted a [pull request](https://github.com/testing-library/user-event/pull/1180) that addresses this issue.