The adjacencyList key does not contain all adjacencies for projects which use webpack aliases to resolve files from another path.
Given the following webpack config:
resolve: {
extensions: ['*', '.js', '.jsx'],
alias: {
app: 'src/js;,
},
},
And the following file src/js/app.js:
The adjacency will not be discovered. However, the dependency is listed correctly.