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.

63 lines
1.7 KiB
JavaScript

/*
* Copyright (C) 2019 Intel Corporation
* SPDX-License-Identifier: MIT
*/
/* eslint-disable */
const path = require('path');
const HtmlWebpackPlugin = require("html-webpack-plugin");
const Dotenv = require('dotenv-webpack');
module.exports = {
target: 'web',
mode: 'production',
devtool: 'source-map',
entry: './src/index.tsx',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'cvat-ui.min.js',
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: false,
inline: true,
port: 3000,
historyApiFallback: true,
},
resolve: {
extensions: ['.tsx', '.ts', '.jsx', '.js', '.json'],
},
module: {
rules: [{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
plugins: ['@babel/plugin-proposal-class-properties'],
presets: [
['@babel/preset-env', {
targets: {
chrome: 58,
},
}],
['@babel/preset-react'],
['@babel/typescript'],
],
sourceType: 'unambiguous',
},
},
}, {
test: /\.(css|scss)$/,
use: ['style-loader', 'css-loader']
}],
},
plugins: [
new HtmlWebpackPlugin({
template: "./src/index.html",
inject: false,
}),
new Dotenv(),
],
node: { fs: 'empty' },
};