superset/panoramix/assets/webpack.config.js
2016-03-01 18:22:41 -08:00

39 lines
1.0 KiB
JavaScript

var webpack = require('webpack');
var path = require('path');
var APP_DIR = path.resolve(__dirname, './'); // input
var BUILD_DIR = path.resolve(__dirname, './javascripts/dist'); // output
var config = {
// for now generate one compiled js file per entry point / html page
entry: {
dashboard: APP_DIR + '/javascripts/dashboard.js',
explore: APP_DIR + '/javascripts/explore.js',
featured: APP_DIR + '/javascripts/featured.js',
sql: APP_DIR + '/javascripts/sql.js',
standalone: APP_DIR + '/javascripts/standalone.js',
},
output: {
path: BUILD_DIR,
filename: '[name].entry.js'
},
module : {
loaders : [
{
test: /\.jsx?/,
include: APP_DIR,
exclude: APP_DIR + '/node_modules',
loader: 'babel' // transpile jsx + ES2015/6 -> ES5
},
{
test: /\.css$/,
//exclude: APP_DIR + '/node_modules',
loader: "style-loader!css-loader" // load css via require('../*.css')
},
]
},
plugins: []
};
module.exports = config;