-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
69 lines (59 loc) · 1.32 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
const webpack = require('webpack')
const path = require('path')
const APP_PATH = path.resolve(__dirname, 'src/FrameTicker.ts')
const BUILD_PATH = path.resolve(__dirname, 'dist')
const PRODUCTION = process.env.NODE_ENV === 'production';
const basePlugins = [
];
const devPlugins = [
new webpack.NoErrorsPlugin(),
];
const prodPlugins = [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
sequences: true,
dead_code: true,
conditionals: true,
booleans: true,
unused: true,
if_return: true,
join_vars: true,
drop_console: true
},
comments: false,
sourceMap: false,
}),
];
module.exports = {
entry: APP_PATH,
output: {
path: BUILD_PATH,
library: 'FrameTicker',
libraryTarget: 'umd',
filename: 'FrameTicker.js',
umdNamedDefine: true
},
devtool: 'source-map',
resolve: {
root: path.resolve('./src'),
extensions: [ '', '.js', '.ts', '.jsx', '.tsx' ]
},
module: {
preLoaders: [
{ test: /\.tsx?$/, loader: "tslint" }
],
loaders: [
{ test: /\.tsx?$/, loader: 'babel!ts-loader' } // , exclude: /node_modules/
]
},
tslint: {
emitErrors: true,
failOnHint: true
},
plugins: basePlugins
.concat(PRODUCTION ? prodPlugins : [])
.concat(!PRODUCTION ? devPlugins : [])
}