mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
const path = require('path');
|
|
|
|
// Q: Why do you use webpack?
|
|
// A: https://github.com/nativefier/nativefier/commit/cde5c1e13bdc2739604cab04bac64eae0d719ed1
|
|
module.exports = {
|
|
target: 'node',
|
|
entry: './src/main.ts',
|
|
devtool: 'source-map', // https://webpack.js.org/configuration/devtool/
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
use: 'ts-loader', // https://webpack.js.org/guides/typescript/
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
// Don't mock __dirname; https://webpack.js.org/configuration/node/#root
|
|
node: {
|
|
__dirname: false,
|
|
},
|
|
// Prevent bundling of certain imported packages and instead retrieve these
|
|
// external deps at runtime. This is what we want for electron, placed in the
|
|
// app by electron-packager. https://webpack.js.org/configuration/externals/
|
|
externals: {
|
|
electron: 'commonjs electron',
|
|
},
|
|
resolve: {
|
|
extensions: [ '.ts', '.js' ],
|
|
},
|
|
output: {
|
|
filename: 'main.js',
|
|
path: path.resolve(__dirname, 'lib'),
|
|
},
|
|
mode: 'none'
|
|
}; |