I installed Kepler.g like this:
npm i kepler.gl
it got added to my package.json:
"kepler.gl": "^2.1.2"
However, if I try to import:
import keplerGlReducer from "kepler.gl/reducers";
I get an error that
Could not find a declaration file for module 'kepler.gl/reducers'. '/Users/grannyandsmith/web/web-admin/node_modules/kepler.gl/reducers.js' implicitly has an 'any' type.
  Try `npm install @types/kepler.gl` if it exists or add a new declaration (.d.ts) file containing `declare module 'kepler.gl/reducers';`ts(7016)
I also tried
npm install @types/kepler.gl
but as expected it gives me npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/@types%2fkepler.gl - Not found
How can I fix this?
Edit:
tsconfig file:
{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "preserve",
    "typeRoots": ["types/global.d.ts"]
  },
  "include": [
    "src"
  ]
}