mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
19 lines
333 B
JavaScript
19 lines
333 B
JavaScript
var entryData = require('./webpackEntryPoints.json');
|
|
var path = require('path');
|
|
|
|
module.exports = {
|
|
devtool: "source-map",
|
|
|
|
entry: entryData,
|
|
|
|
output: {
|
|
"path": path.join(__dirname, '../../'),
|
|
"filename": "[name].js"
|
|
},
|
|
|
|
resolve: {
|
|
extensions: ["", ".js", ".json"],
|
|
mainFields: ["main", "browser"]
|
|
}
|
|
};
|