Skip to content
Advertisement

create index.d.ts for read-more-react npm package

I have a typescript project,

I am trying to import read-more-react but beacuse it doesn’t have a @type defined for it, I need to write the index.d.ts file myself (place it under @type/read-more-react),

I have tried this:

JavaScript

but it doesn’t seems to work,

can anyone help me in how to successfully implement the index.d.ts file, what am I missing ?

Advertisement

Answer

Inside your tsconfig.json file, you need to include your index.d.ts file. You can do so by adding the following:

JavaScript

Also use this code instead:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement