the issue is related to import statement where import path is not being provided properly.
For example :- import * from '../.././../tools1/tools2/tools/demo';
should be import * from '@tools/tools/demo';
here @tools is considered as root directory.
Note:- above mentioned path is just an example.