-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.common.js
67 lines (62 loc) · 1.29 KB
/
webpack.common.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
// https://www.toptal.com/react/webpack-react-tutorial-pt-1
import sass from 'sass'
import path from 'path'
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url)
export const __dirname = path.dirname(__filename)
export const config = {
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.js/,
use: 'babel-loader',
// include: __dirname + 'src/*',
exclude: /node_modules/,
},
{
test: /\.s[ac]ss$/i,
use: [
'style-loader',
'css-loader',
{
loader: 'sass-loader',
options: {
implementation: sass,
},
},
],
},
{
test: /\.svg$/,
use: [
{
loader: '@svgr/webpack',
options: {
icon: true,
},
},
],
},
{
test: /\.(png|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
],
},
devtool: 'source-map',
resolve: {
extensions: ['.js', '.ts', '.tsx', '.scss', '.svg'],
},
}
export const output = {
library: {
type: 'module',
},
filename: 'index.js',
// sourceMapFilename: 'log.js.map',
}