On MacOS, case does not matter on import. When the file is named aa.js, it can be imported via:
import * from 'aa';
import * from 'Aa';
import * from 'AA';
import * from 'aA';
Still it fails on Linux. Is there a way to detect and/or fix these problem for a whole project (via webpack, eslint or whatever)?