I'm trying to use bcryptjs
package in my React project. I'm getting following error:
Could not find a declaration file for module 'bcryptjs'. ‘…/node_modules/bcryptjs/index.js'
implicitly has an 'any' type.
Try `npm i --save-dev @types/bcryptjs` if it exists or add a new declaration (.d.ts)
file containing `declare module 'bcryptjs';`
Running npm i --save-dev @types/bcryptjs
makes import error to go away but when I try to use variables from the package, they are not found.
NodeJS version is node v16.17.0
and TS is use as well.
How can I fix it? Thanks
I'm trying to use bcryptjs
package in my React project. I'm getting following error:
Could not find a declaration file for module 'bcryptjs'. ‘…/node_modules/bcryptjs/index.js'
implicitly has an 'any' type.
Try `npm i --save-dev @types/bcryptjs` if it exists or add a new declaration (.d.ts)
file containing `declare module 'bcryptjs';`
Running npm i --save-dev @types/bcryptjs
makes import error to go away but when I try to use variables from the package, they are not found.
NodeJS version is node v16.17.0
and TS is use as well.
How can I fix it? Thanks
Share Improve this question edited Dec 26, 2024 at 11:14 ahuemmer 2,05913 gold badges27 silver badges36 bronze badges asked Nov 9, 2022 at 14:43 rumonrumon 6163 gold badges12 silver badges26 bronze badges 1- maybe this helps you?: stackoverflow./questions/49443296/… – Farbod Shabani Commented Nov 9, 2022 at 14:47
4 Answers
Reset to default 6Try using below option:
npm i bcryptjs @types/bcryptjs
and then, add the below line
import { hash, pare } from 'bcryptjs';
Make sure that "allowSyntheticDefaultImports"
is set to "true"
in your tsconfig.json
file
Try running the mand npm i --save-dev @types/bcryptjs
or yarn add --dev @types/bcryptjs
if you're using yarn to get the type definitions for this module.
I had a similar problem. To fix it, I first did:
yarn add bcryptjs @types/bcryptjs
And then removed the curly braces, when importing bcrypt. So, instead of:
import { bcrypt } from 'bcryptjs';
I did:
import bcrypt from 'bcryptjs';
Running
npm i --save-dev @types/bcryptjs
makes import error to go away..
#RUN IN ROOT FOLDER FIRST