Package Exports
- imports-loader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (imports-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
imports loader for webpack
Usage
require("imports?page=../pages/mypage,jQuery,config=>{size:50}!./file.js");
// adds below code the the file's source:
// var page = require("../pages/mypage");
// var jQuery = require("jQuery");
// var config = {size:50};