1// create a jsconfig.json file in your root dir(where package.json is located) and add this:
2{
3 "compilerOptions": {
4 "baseUrl": "src"
5 }
6}
1// create an .env file in the project's root dir(where package.json is located) and add
2NODE_PATH=src
3// and if this does not work try
4NODE_PATH=./src