support mocking modules not found in filesystem
support mocking specifiers that aren't found in filesystem re #126,
use isPackageNotFoundError: false
to enable this. For example,
const component = await esmock(`../local/vueComponent.js`, {
vue: { // vue was not downloaded and is not found in the filesystem
h: (...args) => args
}
}, {}, {
isPackageNotFoundError: false
})
the interface for this may change in the near future