master
Lucas Duailibe 2018-04-11 14:26:48 -03:00
parent 4edfb67f55
commit a3be9f5505
2 changed files with 7 additions and 8 deletions

View File

@ -5,5 +5,6 @@
/test.js
/dist/
**/node_modules/**
/website/build/
/website/static/lib/
/tests_integration/cli/

View File

@ -1,25 +1,23 @@
"use strict";
const webpack = require('webpack')
module.exports = {
entry: {
playground: './playground/index.js'
playground: "./playground/index.js"
},
output: {
filename: '[name].js',
path: __dirname + '/static/'
filename: "[name].js",
path: __dirname + "/static/"
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
loader: "babel-loader",
options: {
presets: ['env']
presets: ["env"]
}
}
]
}
}
};