For example, if I have
define(['./path/to/Foo'], function(Foo) {})
Is ./path/to/Foo
resolved relative to the require.config's baseUrl
, or relative to the that module's location?
Based on http://requirejs.org/docs/api.html#modulenotes-relative-names, seems that it is resolved relative to the file regardless of baseUrl.