After setting up JSPM and SystemJS I have a working app, but while configuring Karma and starting the server I get this error.
[watcher] Pattern "MY_PACKAGE_DIR/es6-module-loader.js" does not match any file.
From the karma-jspm docs: https://www.npmjs.com/package/karma-jspm
This plugin assumes you are using jspm in your project. You will need to have a config.js in the root of
your project (though this is configurable) as well as a jspm_packages directory containing systemjs
and the es6-module-loader.
However, the SystemJS docs say:
Built on top of the ES6 Module Loader polyfill.
Is this a problem with karma-jspm or a misconfiguration of jspm itself?
After setting up JSPM and SystemJS I have a working app, but while configuring Karma and starting the server I get this error.
[watcher] Pattern "MY_PACKAGE_DIR/es6-module-loader.js" does not match any file.
From the karma-jspm docs: https://www.npmjs.com/package/karma-jspm This plugin assumes you are using jspm in your project. You will need to have a config.js in the root of your project (though this is configurable) as well as a jspm_packages directory containing systemjs and the es6-module-loader.
However, the SystemJS docs say: Built on top of the ES6 Module Loader polyfill.
Is this a problem with karma-jspm or a misconfiguration of jspm itself?