@zohodesk/client_build_tool
Version:
A CLI tool to build web applications and client libraries
17 lines (13 loc) • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.jsLoaders = jsLoaders;
var _babelLoaderConfig = require("./loaderConfigs/babelLoaderConfig");
function jsLoaders(options) {
return [{
test: /\.js$/,
exclude: /node_modules/,
use: [(0, _babelLoaderConfig.babelLoaderConfig)(options)] // include: path.join(appPath, folder)
}];
}