bogdan-panteleev

Results 4 comments of bogdan-panteleev

just installing "tsconfig-paths" package in the same level where the tsconfig.app.json lies helped me

Same for me. Just configured webpack as follows. And if I run `webpack --watch`, then I have webpack recompiling the project endlessly. Eventually I just switched to ESBuild. `package.json` ```typescript...

Also faced with a similar problem. I have a code: ``` // main.ts import dotenv from 'dotenv'; dotenv.config(); console.log('configured', process.env.DOTENV_RESULT); import { ENDPOINTS } from '../contants/endpoints'; console.log('check import', ENDPOINTS.USERS); //...