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.
124 lines
3.2 KiB
JavaScript
124 lines
3.2 KiB
JavaScript
// Copyright (C) 2020-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const path = require('path');
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const BundleDeclarationsWebpackPlugin = require('bundle-declarations-webpack-plugin');
|
|
|
|
const styleLoaders = [
|
|
'style-loader',
|
|
{
|
|
loader: 'css-loader',
|
|
options: {
|
|
importLoaders: 2,
|
|
},
|
|
},
|
|
{
|
|
loader: 'postcss-loader',
|
|
options: {
|
|
plugins: [require('postcss-preset-env')],
|
|
},
|
|
},
|
|
'sass-loader',
|
|
];
|
|
|
|
const nodeConfig = {
|
|
target: 'node',
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
entry: './src/typescript/canvas.ts',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'cvat-canvas.node.js',
|
|
library: 'canvas',
|
|
libraryTarget: 'commonjs',
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js', '.json'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
plugins: [
|
|
'@babel/plugin-proposal-class-properties',
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
],
|
|
presets: [['@babel/preset-env', { targets: 'node > 10' }], '@babel/typescript'],
|
|
sourceType: 'unambiguous',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
test: /\.(css|scss)$/,
|
|
exclude: /node_modules/,
|
|
use: styleLoaders,
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new BundleDeclarationsWebpackPlugin({
|
|
outFile: "declaration/src/cvat-canvas.d.ts",
|
|
}),
|
|
],
|
|
};
|
|
|
|
const webConfig = {
|
|
target: 'web',
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
entry: {
|
|
'cvat-canvas': './src/typescript/canvas.ts',
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: '[name].[contenthash].js',
|
|
library: 'canvas',
|
|
libraryTarget: 'window',
|
|
},
|
|
devServer: {
|
|
contentBase: path.join(__dirname, 'dist'),
|
|
compress: false,
|
|
inline: true,
|
|
port: 3000,
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js', '.json'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
plugins: ['@babel/plugin-proposal-class-properties'],
|
|
presets: ['@babel/preset-env', '@babel/typescript'],
|
|
sourceType: 'unambiguous',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
exclude: /node_modules/,
|
|
use: styleLoaders,
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new BundleDeclarationsWebpackPlugin({
|
|
outFile: "declaration/src/cvat-canvas.d.ts",
|
|
}),
|
|
],
|
|
};
|
|
|
|
module.exports = [webConfig, nodeConfig];
|