-
Notifications
You must be signed in to change notification settings - Fork 12
/
webpack.config.js
131 lines (122 loc) · 2.97 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
const MONACO_DIR = path.resolve(__dirname, './node_modules/monaco-editor');
// Monaco Editor uses CSS imports internally,
// so we need a separate css-loader for app and monaco-editor packages
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'app.js'
},
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.ttf$/,
type: 'asset/resource'
}
]
},
plugins: [new MonacoWebpackPlugin()]
};
module.exports = {
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx', '.css', '.json', '.ttf'],
mainFields: ['main', 'module', 'browser'],
},
entry: './src/index.js',
target: 'electron-renderer',
devtool: 'source-map',
// module: {
// },
module: {
loaders: [{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/
}, {
test: /\.css$/,
loader: ["style-loader", "css-loader"]
}, {
test: /\.(jpe?g|png|gif|woff|woff2|eot|ttf|svg)(\?[a-z0-9=.]+)?$/,
loader: 'url-loader?limit=100000'
}],
rules: [
// {
// test: /\.js$/,
// exclude: /(node_modules|bower_components)/,
// use: {
// loader: 'babel-loader',
// options: {
// presets: ['@babel/preset-env'],
// plugins: ['@babel/plugin-transform-runtime']
// }
// }
// },
{
test: /\.ttf$/,
use: ['file-loader'],
},
{
test: /\.css$/i,
use: ['file-loader', 'style-loader', 'css-loader']
},
{
test: /\css$/i, include: MONACO_DIR, use: ['file-loader', 'style-loader', 'css-loader'],
},
{
test: /\.(js|ts|tsx|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
],
},
devServer: {
contentBase: path.join(__dirname, '../dist/renderer'),
historyApiFallback: true,
compress: true,
hot: true,
port: 4000,
publicPath: '/',
},
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'js/[name].js',
},
plugins: [new HtmlWebpackPlugin(), new MonacoWebpackPlugin()],
sourceType: "unambiguous"
};
// const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
// const path = require('path');
// module.exports = {
// entry: './index.js',
// output: {
// path: path.resolve(__dirname, 'dist'),
// filename: 'app.js'
// },
// module: {
// rules: [
// {
// test: /\.css$/,
// use: ['style-loader', 'css-loader']
// },
// {
// test: /\.ttf$/,
// type: 'asset/resource'
// }
// ]
// },
// plugins: [new MonacoWebpackPlugin()]
// };