Is the module name written in the wrong case? For example, it should be import { Deposit } from './fundmgmt/Deposit' You wrote import { Deposit } from './fundmgmt/deposit' on Windows The file path is not case-sensitive. The compilation may pass, but it may not work on Linux. So this is a warning.
Is the module name written in the wrong case? For example, it should be
import { Deposit } from './fundmgmt/Deposit'
You wrote
import { Deposit } from './fundmgmt/deposit'
on Windows The file path is not case-sensitive. The compilation may pass, but it may not work on Linux. So this is a warning.