-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
52 lines (50 loc) · 1.09 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
const webpack = require("webpack");
const path = require('path');
const resolve = path.resolve;
const time = new Date().toLocaleDateString('ru', { hour: 'numeric', minute: 'numeric', second: 'numeric' });
const definePLugin = new webpack.DefinePlugin({
VERSION: time,
});
module.exports = [
{
entry: './src/index.ts',
mode: "production",
module: {
rules: [
{
test: /\.ts/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.less$/,
use: [
// conf.mode === 'production' ? MiniCssExtractPlugin.loader :
{ loader: "style-loader" },
{
loader: "css-loader",
options: {
modules: true,
localIdentName: '[folder]__[local]--[hash:base64:5]',
}
},
{
loader: "less-loader",
options: { root: path.resolve(__dirname, './') }
},
]
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
libraryTarget: 'umd',
globalObject: 'this',
library: 'providerLedger',
filename: 'provider-ledger.js',
path: resolve(__dirname, 'dist'),
}
}
];