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.
26 lines
567 B
26 lines
567 B
4 years ago
|
import commonjs from "rollup-plugin-commonjs";
|
||
|
import nodeResolve from "rollup-plugin-node-resolve";
|
||
|
|
||
|
export default {
|
||
|
entry: "index.js",
|
||
|
format: "umd",
|
||
|
globals: {
|
||
|
"d3-selection": "d3",
|
||
|
"d3-drag": "d3"
|
||
|
},
|
||
|
moduleName: "d3",
|
||
|
dest: 'build/d3-lasso.js',
|
||
|
plugins: [
|
||
|
nodeResolve({
|
||
|
jsnext: true,
|
||
|
main: true,
|
||
|
browser: true,
|
||
|
extensions: [".js", ".jsx"],
|
||
|
skip: [ "d3-selection", "d3-drag","d3-dispatch"]
|
||
|
}),
|
||
|
commonjs({
|
||
|
include: "node_modules/**",
|
||
|
exclude: [ "node_modules/d3-selection/"]
|
||
|
})
|
||
|
]
|
||
|
};
|