Is it possible to configure fallback alias?
Eg.
app
  - views
    - people
      index.js
      _avatar.js
      person.js //require this if exist
  - models
    person.js // require fallback if there is no such module in original path
// _avatar.js
  var person = require('./person.js')