TidGi-Desktop/webpack.main.config.js
2021-06-02 13:20:24 +08:00

50 lines
1.4 KiB
JavaScript

/* 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 = {
/**
* 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: [
...require('./webpack.rules'),
{
test: /\.(m?js|node)$/,
parser: { amd: true },
use: {
loader: '@zeit/webpack-asset-relocator-loader',
options: {
outputAssetBase: 'native_modules',
emitDirnameAll: true,
},
},
},
],
},
plugins: plugins.main,
resolve: {
alias: webpackAlias,
extensions: ['.js', '.ts', '.jsx', '.tsx', '.json'],
},
externals: [
// TODO: simply external things will make require can't find things. May need some other way.
// nodeExternals({
// additionalModuleDirs: ['@tiddlygit/tiddlywiki'],
// allowlist: [/(threads-plugin)/],
// }),
],
// externalsType: 'commonjs',
// externalsPresets: { electronMain: true },
node: {
__filename: true,
__dirname: true,
},
};