Hello all!
In my node code, I require my private modules as such
```
var utils = require(global.rootPath + "server/common/utils");
```
This way Tern fails to lookup the module correctly. But it's fine If I use a relative directory, such as
```
var utils = require("../../server/common/utils");
```
Is there anyway to make Tern find the module using the first way? Or would you recommend some workaround (such as setting some environment variable)?
Thanks for any help!