Files
meteor/packages/modules-runtime/modern.js
2022-08-18 22:13:55 -03:00

11 lines
326 B
JavaScript

meteorInstall = makeInstaller({
// On the client, make package resolution prefer the "browser" field of
// package.json over the "module" field over the "main" field.
browser: true,
mainFields: ['browser', 'module', 'main'],
fallback: function (id, parentId, error) {
verifyErrors(id, parentId, error);
}
});