-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
117 lines (115 loc) · 4.22 KB
/
webpack.config.ts
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import path from 'path';
import { CleanWebpackPlugin } from 'clean-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import { Configuration, DefinePlugin } from 'webpack';
import { WebpackCustomRunScriptsPlugin } from '@sellerspot/webpack-run-scripts-custom-plugin';
const webpackConfiguration = (env: {
production?: boolean;
development?: boolean;
}): Configuration => {
const isProduction = env.production ? true : false;
return {
entry: './src',
resolve: {
extensions: ['.ts', '.tsx', '.js'],
},
mode: isProduction ? 'production' : 'development',
externals: {
// Don't bundle react or react-dom
// https://itnext.io/how-to-package-your-react-component-for-distribution-via-npm-d32d4bf71b4f
react: {
commonjs: 'react',
commonjs2: 'react',
amd: 'React',
root: 'React',
publicPath: '',
},
},
output: {
path: path.join(__dirname, '/dist'),
filename: 'index.js',
libraryTarget: 'umd',
umdNamedDefine: true,
library: 'universal-components',
},
module: {
rules: [
{
test: /\.(ts|tsx)$/i,
loader: 'ts-loader',
options: {
transpileOnly: false, // this generates .d.ts when it is false
},
},
{
test: /\.(png|jpe?g|gif|svg)$/i,
use: [
{
loader: 'file-loader',
},
],
},
{
test: /\.(css|scss)$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
modules: {
localIdentName: '[name]__[local]___[hash:base64:5]',
},
},
},
{
loader: 'sass-loader',
},
{
loader: 'sass-resources-loader',
options: {
resources: require(path.join(
process.cwd(),
'src/styles/__library.ts',
)),
},
},
],
include: /\.module\.(css|scss)$/,
},
{
test: /\.(css|scss)$/,
use: [
'style-loader',
'css-loader',
'sass-loader',
{
loader: 'sass-resources-loader',
options: {
resources: require(path.join(
process.cwd(),
'src/styles/__library.ts',
)),
},
},
],
exclude: /\.module\.(css|scss)$/,
},
],
},
plugins: [
isProduction ? new CleanWebpackPlugin() : new DefinePlugin({}), // cleans dist only on hard and production builds
new ForkTsCheckerWebpackPlugin({
eslint: {
files: './src',
},
}),
!isProduction
? new WebpackCustomRunScriptsPlugin({ command: 'npm run build:dev' })
: new DefinePlugin({}),
],
devtool: isProduction ? false : 'eval-source-map', // eval super fast for development (don't allow it on production as it exposes source code)
watch: !isProduction,
};
};
export default webpackConfiguration;