-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
webpack.main.config.js
75 lines (74 loc) · 2.19 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
73
74
75
/* eslint-disable @typescript-eslint/no-unsafe-argument */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable unicorn/prefer-module */
/* eslint-disable @typescript-eslint/no-var-requires */
const { webpackAlias } = require('./webpack.alias');
const plugins = require('./webpack.plugins');
const nodeExternals = require('webpack-node-externals');
module.exports = {
target: 'electron-main',
/**
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: './src/main.ts',
// Put your normal webpack config below here
module: {
rules: [
{
// We're specifying native_modules in the test because the asset relocator loader generates a
// "fake" .node file which is really a cjs file.
test: /native_modules\/.+\.node$/,
use: 'node-loader',
},
{
test: /\.(m?js|node)$/,
parser: { amd: false },
use: {
loader: '@vercel/webpack-asset-relocator-loader',
options: {
outputAssetBase: 'native_modules',
},
},
},
...require('./webpack.rules'),
],
},
plugins: plugins.main,
resolve: {
alias: webpackAlias,
extensions: ['.js', '.ts', '.jsx', '.tsx', '.json'],
},
output: {
devtoolModuleFilenameTemplate: (info) => {
return `file:///${encodeURI(info.absoluteResourcePath)}`;
},
},
externals: [
// simply external all things will make require can't find things. Only exclude what we copied in scripts/afterPack.js
// nodeExternals({
// additionalModuleDirs: ['tiddlywiki'],
// allowlist: [/(threads-plugin)/],
// }),
'tiddlywiki',
'dugite',
'zx',
...(process.platform === 'win32' ? [] : ['registry-js']),
],
// externalsType: 'commonjs',
// externalsPresets: { electronMain: true },
node: {
__filename: true,
__dirname: true,
},
cache: process.platform === 'darwin'
? {
type: 'filesystem',
buildDependencies: {
config: [__filename],
},
}
: undefined,
};