Need js library 'react-keydown' in typescript project. There are no taipings for this library.

/// <amd-dependency path="./node_modules/react-keydown" /> declare var require:(moduleId:string) => any; 

and then require ('react-keydown');

then when using the browser gives an error Uncaught SyntaxError: Unexpected token ^

  module.exports = ^1.5.0; /***************** ** WEBPACK FOOTER ** external "^1.5.0" ** module id = 7 ** module chunks = 0 **/ 

in the webpack config file:

  externals: { "react": "React", "react-dom": "ReactDOM", "react-keydown": "^1.5.0" }, 

How to solve my problem?

    0