esm-module-alias
esm-module-alias copied to clipboard
An alternative to module-alias, but for esm
Results
1
esm-module-alias issues
Sort by
recently updated
recently updated
newest added
`path.join` should not be used with `file:\\` URL, it's unreliable. ```js // Node.js v18 const path = require('path'); path.join('file:\\', process.cwd()); // 'file:\\C:\\Users\\xxx\\nodejs\\v18.xx' // Node.js v24 const path = require('path'); path.join('file:\\',...