forked from project-chip/zap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.main.config.js
72 lines (70 loc) · 1.66 KB
/
webpack.main.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
const path = require('path')
const nodeExternals = require('webpack-node-externals')
const CopyPlugin = require('copy-webpack-plugin')
const config = {
node: {
__dirname: false,
__filename: true,
},
mode: 'development',
target: 'electron-main',
context: path.resolve(__dirname + '/src-electron/main-process/'),
entry: './electron-main',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'electron-main.js',
},
module: {
noParse: /\/native-require.js$/,
rules: [
{
enforce: 'pre',
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'eslint-loader',
options: {
formatter: require('eslint').CLIEngine.getFormatter('stylish'),
},
},
],
},
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
compilerOptions: {
noEmit: false,
},
},
},
],
exclude: /node_modules/,
},
{
enforce: 'pre',
test: /\.sql$/,
loader: 'file-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
devtool: 'eval-cheap-module-source-map',
externals: [nodeExternals()], // in order to ignore all modules in node_modules folder
plugins: [
new CopyPlugin({
patterns: [
{ from: '../db/zap-schema.sql', to: 'backend/db/' },
{ from: '../../zcl-builtin', to: 'backend/zcl-builtin' },
{ from: '../icons', to: 'backend/icons' },
],
}),
],
}
module.exports = config