johvin / eslint-import-resolver-alias

a simple Node behavior import resolution plugin for eslint-plugin-import, supporting module alias
MIT License
180 stars 10 forks source link

Check alias in array of paths #19

Open niksy opened 3 years ago

niksy commented 3 years ago

Is ist possible to have alias check for array of paths?

Example:

export default {
    // ...
    alias: {
        map: ['foo', ['./first-path-to-check', './second-path-to-check']]
    }
};