StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
/* eslint-env node */
|
|
|
|
const path = require('path')
|
|
const CleanWebpackPlugin = require('clean-webpack-plugin')
|
|
|
|
module.exports = {
|
|
context: __dirname,
|
|
resolve: {
|
|
modules: [
|
|
path.resolve(__dirname, 'src'),
|
|
'node_modules'
|
|
],
|
|
alias: {
|
|
'vue$': 'vue/dist/vue.esm.js'
|
|
},
|
|
extensions: ['.js', '.json', '.vue']
|
|
},
|
|
entry: './src/index.js',
|
|
externals: {
|
|
'accounting-js': {
|
|
commonjs: 'accounting-js',
|
|
commonjs2: 'accounting-js',
|
|
amd: 'accounting-js',
|
|
root: 'accounting'
|
|
}
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: "vue-numeric.min.js",
|
|
library: 'VueNumeric',
|
|
libraryTarget: 'umd',
|
|
umdNamedDefine: true
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader'
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
exclude: path.resolve(__dirname, 'node_modules')
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new CleanWebpackPlugin(['./dist'])
|
|
],
|
|
devtool: false,
|
|
performance: {
|
|
hints: false
|
|
}
|
|
} |