Description
I'm getting this TypeScript compilation error:
Cannot find type definition file for 'linkify-it'.
The file is in the program because:
Entry point for implicit type library 'linkify-it'
Solution:
Step 1. Install the package
npm install linkify-it
Step 2. Remove the bad type reference
Open your tsconfig.json and look for something like:
"types": ["linkify-it"]
or
"typeRoots": ["./node_modules/@types", "linkify-it"]
following this steps Guaranteed Solve this issue.
Description
I'm getting this TypeScript compilation error:
Cannot find type definition file for 'linkify-it'.
The file is in the program because:
Entry point for implicit type library 'linkify-it'
Solution:
Step 1. Install the package
npm install linkify-it
Step 2. Remove the bad type reference
Open your tsconfig.json and look for something like:
"types": ["linkify-it"]
or
"typeRoots": ["./node_modules/@types", "linkify-it"]
following this steps Guaranteed Solve this issue.