-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
62 lines (59 loc) · 1.5 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
const path = require("path");
const webpack = require("webpack");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const SRC_DIR = path.resolve('src');
const HtmlWebpackPlugin = require("html-webpack-plugin");
const HtmlWebpackPluginConfig = new HtmlWebpackPlugin({
template: path.resolve(SRC_DIR, "index.html"),
filename: "index.html",
inject: "body"
});
module.exports = {
entry: path.resolve(SRC_DIR, "main.tsx"),
output: {
filename: "bundle.js",
path: path.resolve("public")
},
devtool: "source-map",
module: {
rules: [{
test: /\.tsx?$/,
loader: "awesome-typescript-loader"
}, {
test: /\.tsx?$/,
enforce: 'pre',
loader: 'tslint-loader',
options: {
configFile: 'tslint.json',
failOnHint: false
}
}, {
enforce: "pre",
test: /\.js?$/,
loader: "source-map-loader"
}, {
test: /\.css$/,
use: ['style-loader', 'css-loader']
}, {
test: /\.svg$/,
loader: 'svg-react-loader'
}],
},
resolve: {
extensions: [
".ts", ".tsx", ".js", ".json", "svg"
],
alias: {
components: path.resolve(SRC_DIR, 'components'),
assets: path.resolve(SRC_DIR, 'assets'),
logic: path.resolve(SRC_DIR, 'logic')
}
},
plugins: [
HtmlWebpackPluginConfig,
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
new CopyWebpackPlugin([{ from: 'src/assets/images' }])
]
};