-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.engine.dev.js
54 lines (51 loc) · 1.49 KB
/
webpack.config.engine.dev.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
const path = require('path');
module.exports = [
{
mode: 'development',
entry: {
engine: './app/engine/index.ts',
},
target: 'electron-main',
output: {
path: __dirname + '/dist',
filename: '[name].js',
pathinfo: true,
libraryTarget: 'commonjs2',
},
externals: './alpaca',
// node: {
// __dirname: false,
// __filename: false,
// },
module: {
rules: [
{
test: /\.[jt]s$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',
options: {
configFile: 'tsconfig.json',
transpileOnly: true,
},
},
],
},
],
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
modules: ['./', 'node_modules'],
alias: {
'alpaca-addon': [
'@taco-paco/alpaca-addon-mac-arm64',
'@taco-paco/alpaca-addon-mac-x64',
'@taco-paco/alpaca-addon-win-x64',
'@taco-paco/alpaca-addon-linux-x64',
'@taco-paco/alpaca-addon-linux-arm64',
],
},
},
},
];