Including a library that extended various objects with Object.defineProperty. steal/buildjs complained that said properties were undefined (when encountering them in the client code).
Managed to replace such definitions with simple assignments (Obj.prototype.X = Y), and it went through okay. However, I'd rather not have to dumb down the code like this.