Package Exports
- requirejs-config-file
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 (requirejs-config-file) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
requirejs-config-file
A small api to read and write your requirejs config file
installation
npm install requirejs-config-fileusage
var ConfigFile = require('requirejs-config-file').ConfigFile;var configFile = new ConfigFile('path/to/some/requirejs-config.js'));
configFile.read(function(err, config) {
if (err) throw 'Something went really wrong: '+err.toString();
console.log(config); // is an object with the found config
});