Importing JSON file gives “Cannot find module” error in IDE but still works
The Application I am trying to import a json file into my typescript application like this: import alert from ‘@org/icons/alert’; The Library Within @org/icons, I have the following package.json: { “types”: “./index.d.ts”, “exports”: { “./alert”: “./icons/alert.json” } } Then in the index.d.ts of @org/icons I declare the module like this: declare module ‘@org/icons/alert’ { export […]