You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently integrated redux-toolkit in one of my projects and my rollup based building setup throws a warning out:
(!) `this` has been rewritten to `undefined`
https://rollupjs.org/guide/en/#error-this-is-undefined
node_modules\@reduxjs\toolkit\dist\redux-toolkit.esm.js
1: var __extends = (this && this.__extends) || (function () {
^
2: var extendStatics = function (d, b) {
3: extendStatics = Object.setPrototypeOf ||
...and 5 other occurrences
Perhaps this is nothing to be concerned about but I decided to create an Issue just in case.
I also integrated redux-toolkit in one of my public projects in order to make this issue reproduceable:
My whole redux setup is inside the store folder. I use Webcomponents/Lit to establish a component architecture. My base class page-element is subscribed to the store and some of mypages make use of it.
The text was updated successfully, but these errors were encountered:
I recently integrated
redux-toolkit
in one of my projects and my rollup based building setup throws a warning out:Perhaps this is nothing to be concerned about but I decided to create an Issue just in case.
I also integrated
redux-toolkit
in one of my public projects in order to make this issue reproduceable:How to reproduce
npm i
npm run build
Files of interest
My whole redux setup is inside the store folder. I use Webcomponents/Lit to establish a component architecture. My base class page-element is subscribed to the store and some of my pages make use of it.
The text was updated successfully, but these errors were encountered: