-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
100 lines (99 loc) · 2.16 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const webpack = require("webpack");
const path = require("path");
const yargs = require("yargs");
const libraryName = "interactive-charts";
const env = process.env.NODE_ENV;
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
context: path.resolve(__dirname),
target: 'web',
entry: {
dist: 'index.ts',
style: 'lib/main.less',
app: [
'app/app.ts'
]
},
output: {
// TODO: npm run serve does not build
path: path.join(__dirname, "dist"),
filename: "../[name]/interactive-charts.js",
library: libraryName,
libraryTarget: "umd",
umdNamedDefine: true,
chunkFilename: "[id].chunk.js"
},
resolve: {
modules: [path.resolve(__dirname), 'node_modules'],
extensions: [".tsx", ".ts", ".js", '.css', 'html', 'less'],
alias: {
'node_modules': path.join(__dirname, 'node_modules')
}
},
devtool: 'source-map', // 'eval'
plugins: [
new webpack.ProvidePlugin({
jQuery: 'jquery',
$: 'jquery',
jquery: 'jquery',
'window.jQuery': 'jquery',
_: 'lodash'
}),
new ExtractTextPlugin("../[name]/interactive-charts.css", {
allChunks: true
})
],
module: {
rules: [
{
test: /\.html$/,
use: [{
loader: 'html-loader'
}],
exclude: /node_modules/
},
{
test: /\.js$/,
use: [{
loader: 'babel-loader',
options: { presets: ['es2015'] }
}],
exclude: /node_modules/
},
{
test: /\.ts$/, // TODO: restore tsc -p . && webpack..
use: [{
loader: 'ts-loader',
options: { transpileOnly: true }
}],
exclude: /node_modules/
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.less$/,
use: ExtractTextPlugin.extract(
'css-loader?sourceMap!' +
'less-loader?sourceMap'
),
exclude: /node_modules/
},
{
test: /\.(ttf|eot|svg)(\?[\s\S]+)?$/,
use: 'file-loader',
},
{
test: /\.woff2?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: 'url-loader?limit=10000',
}
],
loaders: [
{
test: require.resolve('angular'),
use: 'exports?window.angular'
}
]
}
}