mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
refactor: initial transform to ts
This commit is contained in:
parent
c43ecdc2c7
commit
e2ee9cba6e
192 changed files with 12431 additions and 90774 deletions
17
webpack.main.config.js
Normal file
17
webpack.main.config.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
const { webpackAlias } = require('./webpack.alias');
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* This is the main entry point for your application, it's the first file
|
||||
* that runs in the main process.
|
||||
*/
|
||||
entry: './src/services/electron.ts',
|
||||
// Put your normal webpack config below here
|
||||
module: {
|
||||
rules: require('./webpack.rules'),
|
||||
},
|
||||
resolve: {
|
||||
alias: webpackAlias,
|
||||
extensions: ['.js', '.ts', '.jsx', '.tsx', '.json'],
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue