Search code examples
typescriptbody-parser

Cannot import the body-parser module in typesript


Error image :

enter image description here

I don't quite understand the error message:

Error TS1259 (TS) Module '"D:/CloudStorage/..../node_modules/@types/body-parser/index"' can only be default-imported using the 'esModuleInterop' flag

I don't quite understand how to resolve the error


Solution

  • That should do it

    import * as bodyParser from "body-parser"