I am getting the following error when I tried to import helmet
import helmet from 'helmet';
Below is the typescript error
Could not find a declaration file for module 'helmet'. 'c:/dev/GitHub/Scheduling/node_modules/helmet/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/helmet` if it exists or add a new declaration (.d.ts) file containing `declare module 'helmet';`ts(7016)
I am getting the following error when I tried to import helmet
Below is the typescript error
Below is my tsconfig file:
Configurations:
Tyepscript : 5.3.3 Nodejs: 18 How do I resolve the issue?