This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
57 lines (54 loc) · 1.61 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
/**
* This Webpack config is used for bundling files for the demo.
*/
const webpack = require("webpack");
const path = require('path');
const NODE_ENV = JSON.stringify(process.env.NODE_ENV ? process.env.NODE_ENV : 'development');
const devtool = NODE_ENV == '"development"' ? 'source-map' : undefined;
console.info('process.env.NODE_ENV', JSON.stringify(process.env.NODE_ENV));
module.exports = {
devtool,
entry: {
"my-interests": ["./src/MyInterests.tsx"]
},
optimization: {
minimize: true,
usedExports: true
},
output: {
path : path.join(__dirname, '/dist'),
filename : '[name].js',
chunkFilename : '[name].chunk.js',
libraryTarget: 'commonjs2',
publicPath : ''
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx']
},
externals: {
'@fdmg/fd-buttons': '@fdmg/fd-buttons',
'@fdmg/fd-card': '@fdmg/fd-card',
'@fdmg/fd-typography': '@fdmg/fd-typography',
'react': 'react',
'react-dom': 'react-dom',
'styled-components': 'styled-components',
'uniqid': 'uniqid'
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}
}),
new webpack.optimize.ModuleConcatenationPlugin()
],
module: {
rules: [
// all files with a `.ts` or `.tsx` extension will be handled by a TypeScript loader
{
test: /\.tsx?$/,
use: ['awesome-typescript-loader']
}
]
}
};