Coder Social home page Coder Social logo

Comments (12)

timdorr avatar timdorr commented on June 5, 2024

You need to have at least version 2.4.0 installed. But this definitely works, as we do this on our own test suite.

from redux-thunk.

ZeJ0hn avatar ZeJ0hn commented on June 5, 2024

@timdorr Thank you for your answer. But I have the version 2.4.1.

I create my app using create-react-app my-app --template typescript
I add "redux-thunk": "^2.4.1" in my package.json.

Is there anything to configure to be able to use your module in this context?

Thank you for your help,

from redux-thunk.

timdorr avatar timdorr commented on June 5, 2024

I'm not sure, as the file definitely exists in that version: https://unpkg.com/browse/[email protected]/

from redux-thunk.

markerikson avatar markerikson commented on June 5, 2024

As usual, we'd need to see a repro of the issue to better understand why this might not be working.

from redux-thunk.

ZeJ0hn avatar ZeJ0hn commented on June 5, 2024

I tried on a new empty project and got the same issue.
Here the different steps I used:

npx create-react-app my-app --template typescript
cd my-app
npm install --save redux-thunk
npm install 

Edit the file src/index.tsx and add import 'redux-thunk/extend-redux' in the import
Now,

npm start

And this error occurs:

Compiled with problems:X

ERROR in ./src/index.tsx 9:0-34

Module not found: Error: Can't resolve 'redux-thunk/extend-redux' in '/Users/john/my-app/src'

from redux-thunk.

ZeJ0hn avatar ZeJ0hn commented on June 5, 2024

Hi,

I tried to add this in the package.json.

  "exports": {
    "./extend-redux": "./extend-redux.d.ts"
  }

It seems to work but I have another issue during the npm start:

Module parse failed: Unexpected token (13:8)
File was processed with these loaders:
 * ./node_modules/source-map-loader/dist/cjs.js
You may need an additional loader to handle the result of these loaders.
|  * import 'redux-thunk/extend-redux'
|  */
> declare module 'redux' {

from redux-thunk.

timdorr avatar timdorr commented on June 5, 2024

Yeah, that's just tricking the webpack loader stack to use the built-in loader, which isn't Typescript-aware.

Does import type 'redux-thunk/extend-redux' work?

from redux-thunk.

ZeJ0hn avatar ZeJ0hn commented on June 5, 2024

Unfortunatelly, it doesn't help :-(

from redux-thunk.

markerikson avatar markerikson commented on June 5, 2024

@ZeJ0hn in that case could you put together a sandbox or project that shows the error happening?

from redux-thunk.

ZeJ0hn avatar ZeJ0hn commented on June 5, 2024

@markerikson you have an example here https://github.com/ZeJ0hn/redux-thunk-issue

I just followed my previous instructions :-)

from redux-thunk.

timdorr avatar timdorr commented on June 5, 2024

Ah, it's Webpack's fault, as it's getting to the loader before tsc does. Not really a redux-thunk issue, just with the build tooling.

You can work around it with a triple-slash directive. Just add this at the top of your file or in react-app-env.d.ts

/// <reference types="redux-thunk/extend-redux" />

from redux-thunk.

ZeJ0hn avatar ZeJ0hn commented on June 5, 2024

Thank you for your help!

from redux-thunk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.