Buscamos en distintos sitios para así traerte la respuesta a tu dilema, en caso de alguna duda puedes dejarnos tu inquietud y contestamos con gusto, porque estamos para servirte.
Ejemplo: no se pudo encontrar un archivo de declaración para el módulo en el proyecto de reacción
//First try ( works for most of the cases)
npm install @types/module-name
//if that does not solve your problem than . (will surely solve your problem)Inside the project create a folder called @types and added it to
tsconfig.jsonfor find all required types from it .So it looks somewhat
like this-"typeRoots":["../node_modules/@types","../@types"]And inside @types folder create a file called alltypes.d.ts.To find the unknown
types from it .sofor me these were the unknown types and I added it over there.declare module 'react';
declate module 'react-dom';So now the typescript didn't complain about the types not found anymore .
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)