Last active
July 24, 2022 01:41
-
-
Save iamWing/5470f5a8e3bf61420bf6663d36711dc6 to your computer and use it in GitHub Desktop.
Project generated using Electron Forge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "test-app", | |
"productName": "test-app", | |
"version": "1.0.0", | |
"description": "My Electron application description", | |
"main": ".webpack/main", | |
"scripts": { | |
"start": "electron-forge start", | |
"package": "electron-forge package", | |
"make": "electron-forge make", | |
"publish": "electron-forge publish", | |
"lint": "eslint --ext .ts,.tsx ." | |
}, | |
"keywords": [], | |
"author": { | |
"name": "Wing Chau", | |
"email": "[email protected]" | |
}, | |
"license": "MIT", | |
"config": { | |
"forge": { | |
"packagerConfig": {}, | |
"makers": [ | |
{ | |
"name": "@electron-forge/maker-squirrel", | |
"config": { | |
"name": "test_app" | |
} | |
}, | |
{ | |
"name": "@electron-forge/maker-zip", | |
"platforms": [ | |
"darwin" | |
] | |
}, | |
{ | |
"name": "@electron-forge/maker-deb", | |
"config": {} | |
}, | |
{ | |
"name": "@electron-forge/maker-rpm", | |
"config": {} | |
} | |
], | |
"plugins": [ | |
[ | |
"@electron-forge/plugin-webpack", | |
{ | |
"mainConfig": "./webpack.main.config.js", | |
"renderer": { | |
"config": "./webpack.renderer.config.js", | |
"entryPoints": [ | |
{ | |
"html": "./src/index.html", | |
"js": "./src/renderer.ts", | |
"name": "main_window" | |
} | |
] | |
} | |
} | |
] | |
] | |
} | |
}, | |
"devDependencies": { | |
"@electron-forge/cli": "^6.0.0-beta.64", | |
"@electron-forge/maker-deb": "^6.0.0-beta.64", | |
"@electron-forge/maker-rpm": "^6.0.0-beta.64", | |
"@electron-forge/maker-squirrel": "^6.0.0-beta.64", | |
"@electron-forge/maker-zip": "^6.0.0-beta.64", | |
"@electron-forge/plugin-webpack": "^6.0.0-beta.64", | |
"@typescript-eslint/eslint-plugin": "^5.30.7", | |
"@typescript-eslint/parser": "^5.30.7", | |
"@vercel/webpack-asset-relocator-loader": "^1.7.0", | |
"css-loader": "^6.7.1", | |
"electron": "19.0.9", | |
"eslint": "^8.20.0", | |
"eslint-plugin-import": "^2.26.0", | |
"fork-ts-checker-webpack-plugin": "^7.2.13", | |
"node-loader": "^2.0.0", | |
"style-loader": "^3.3.1", | |
"ts-loader": "^9.3.1", | |
"typescript": "~4.5.4" | |
}, | |
"dependencies": { | |
"electron-squirrel-startup": "^1.0.0" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'], | |
}, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); | |
module.exports = [new ForkTsCheckerWebpackPlugin()]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const rules = require('./webpack.rules'); | |
const plugins = require('./webpack.plugins'); | |
rules.push({ | |
test: /\.css$/, | |
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }], | |
}); | |
module.exports = { | |
module: { | |
rules, | |
}, | |
plugins: plugins, | |
resolve: { | |
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css'], | |
}, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = [ | |
// Add support for native node modules | |
{ | |
// 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', | |
}, | |
}, | |
}, | |
{ | |
test: /\.tsx?$/, | |
exclude: /(node_modules|\.webpack)/, | |
use: { | |
loader: 'ts-loader', | |
options: { | |
transpileOnly: true, | |
}, | |
}, | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment