You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.8 KiB
JvaScrirt
80 lines
1.8 KiB
JvaScrirt
/* global
|
|
require:true,
|
|
__dirname:true,
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
const nodeConfig = {
|
|
target: 'node',
|
|
mode: 'development',
|
|
devtool: 'source-map',
|
|
entry: './src/api.js',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'cvat-core.node.js',
|
|
libraryTarget: 'commonjs',
|
|
},
|
|
module: {
|
|
rules: [{
|
|
test: /.js?$/,
|
|
exclude: /node_modules/,
|
|
}],
|
|
},
|
|
stats: {
|
|
warnings: false,
|
|
},
|
|
};
|
|
|
|
const webConfig = {
|
|
target: 'web',
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
entry: './src/api.js',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'cvat-core.min.js',
|
|
library: 'cvat',
|
|
libraryTarget: 'window',
|
|
},
|
|
module: {
|
|
rules: [{
|
|
test: /.js?$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: [
|
|
['@babel/preset-env', {
|
|
targets: '> 2.5%',
|
|
}],
|
|
],
|
|
sourceType: 'unambiguous',
|
|
},
|
|
},
|
|
}, {
|
|
test: /3rdparty\/.*\.worker\.js$/,
|
|
use: {
|
|
loader: 'worker-loader',
|
|
options: {
|
|
publicPath: '/static/engine/js/3rdparty/',
|
|
name: '[name].js',
|
|
},
|
|
},
|
|
}, {
|
|
test: /\.worker\.js$/,
|
|
exclude: /3rdparty/,
|
|
use: {
|
|
loader: 'worker-loader',
|
|
options: {
|
|
publicPath: '/static/engine/js/',
|
|
name: '[name].js',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = [nodeConfig, webConfig];
|