how to solve Module not found: Error: Can't resolve 'ts-loader'?

Viewed 23

ERROR in index Module not found: Error: Can't resolve 'ts-loader' in '/home/asd123456/ic-projects/token' resolve 'ts-loader' in '/home/asd123456/ic-projects/token' Parsed request is a module using description file: /home/asd123456/ic-projects/token/package.json (relative path: .) resolve as module looking for modules in /home/asd123456/ic-projects/token/node_modules single file module using description file: /home/asd123456/ic-projects/token/package.json (relative path: ./node_modules/ts-loader)

enter image description here

1 Answers

Try running npm install. If that does not work, then remove the node_modules directory and repeat the previous command.

Related