-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
86 lines (81 loc) · 2.03 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const _ = require('underscore');
const webpack = require('webpack');
const packageJson = require('./package.json');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const libraryName = 'Table4JS';
const banner = [
"table4js - JavaScript Table/Grid library v" + packageJson.version,
"Copyright (c) 2018-2023 Research Laboratory Abris LTD - https://github.com/table4js/components",
"License: MIT (http://www.opensource.org/licenses/mit-license.php)",
].join("\n");
const BASE_CFG = {
target: 'web',
resolve: {
extensions: ['.ts', '.js', '.tsx', '.jsx'],
},
plugins: [
new webpack.BannerPlugin(banner)
],
module: {
rules: [
{
test: /\.(css|scss)$/,
use: [MiniCssExtractPlugin.loader, { loader: 'css-loader', options: { sourceMap: true } }, { loader: 'sass-loader', options: { sourceMap: true } }],
},
{
test: /\.svg$/,
loader: 'svg-inline-loader'
},
{
test: /\.(htm|html)$/,
loader: 'raw-loader',
},
{
test: /\.(ts|tsx)$/,
loader: 'ts-loader',
options: {
compilerOptions: {
//'declaration': true,
//'outDir': 'typings/'
}
}
}
]
},
entry: {
table4: './sources/knockout/index.ts',
}
};
const DEV_CFG = _.extend({}, BASE_CFG, {
mode: 'development',
plugins: [
new MiniCssExtractPlugin(
{ filename: '[name].css' }
)
],
output: {
library: libraryName,
libraryTarget: 'umd',
umdNamedDefine: true,
path: __dirname + '/site/dist/standalone',
filename: '[name].js'
},
devtool: 'source-map'
});
const PROD_CFG = _.extend({}, BASE_CFG, {
mode: 'production',
plugins: [
new MiniCssExtractPlugin(
{ filename: '[name].min.css' }
),
//new webpack.optimize.UglifyJsPlugin()
],
output: {
library: libraryName,
libraryTarget: 'umd',
umdNamedDefine: true,
path: __dirname + '/site/dist/standalone',
filename: '[name].min.js'
}
});
module.exports = [DEV_CFG, PROD_CFG];