Nyx
Nyx

Reputation: 33

module file saver not found in angular

I have installed the saver file using

npm install @ types/file-saver --save-dev

Why can't I find the module?

and show this in my project: Module not found: Error: Can't resolve 'file-saver' in 'D:\myAngular\src\app\admin\product'

Upvotes: 3

Views: 7791

Answers (1)

MonkeyScript
MonkeyScript

Reputation: 5121

You have only installed @types/file-saver which is just the type definitions for the actual file-saver package and need to install the latter independently.

npm i file-saver

See this link for a simple example if you're still getting errors.

Upvotes: 9

Related Questions