Added electron-forge version

This commit is contained in:
2022-08-08 21:09:51 -04:00
parent 5deb45001e
commit 74fe630a94
16 changed files with 1902 additions and 3 deletions

14
v2/webpack.main.config.js Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
/**
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: './src/index.ts',
// Put your normal webpack config below here
module: {
rules: require('./webpack.rules'),
},
resolve: {
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css', '.json'],
},
};