I have a service that imports some data. This file has a custom extension. So I'm doing this to import it:
import mydata from '../../assets/file.my-ext';
Typescript is giving me this:
'mydata' is declared but its value is never read.ts(6133)
Cannot find module '../../assets/file.my-ext' or its corresponding type declarations.ts(2307)
How can I fix this?