forked from cainrus/vkloyality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Webpack.config.js
46 lines (39 loc) · 1.38 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
var HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const path = require('path');
module.exports = {
entry: "./src/popup/cardchecker.tsx",
output: {
filename: "popup.js",
path: path.resolve(__dirname, "extension/build")
},
plugins: [
new HtmlWebpackPlugin({
title: '__MSG_appName__',
filename: path.resolve(__dirname, 'extension/build/popup.html'),
template: path.resolve(__dirname, 'src/popup/cardchecker.ejs'),
externals: [
'https://unpkg.com/[email protected]/dist/react.min.js',
'https://unpkg.com/[email protected]/dist/react-dom.min.js'
]
}),
new ExtractTextPlugin( 'popup.css?hash=[chunkhash]' )
],
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".ts", ".tsx", ".js", ".json", ".ejs"]
},
module: {
rules: [
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" },
{ test: /\.less$/, use: ExtractTextPlugin.extract({ use: [ "css-loader", "less-loader" ] }) }
]
},
externals: {
react: 'React',
'react-dom': 'ReactDOM'
}
};