I'm assuming you are using JSDoc 3, but this would apply to any version of JSDoc. You can use dot notation, but filenames are not valid parts of a name. JSDoc expects a "namepath" to appear in the @qugments tag, which would be similar to the full name you would give to refer to that thing from the global scope. In your example the namepath to someObject would simply be "someObject", not "file1.someObject". As an example of using a valid dotted name, the following should work:
```
/**
* @namespace
*/
ns = {};
/**
* @constructor
*/
ns.someObject = function() {}
/**
* @constructor
* @augments ns.someObject
*/
otherObject = function() {}
```