File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ electron-react-typescript-base-proj/
3939| | - actions/ //- Redux actions
4040| | - main/ //- Electron / backend modules
4141| | | - main.ts //- Entry point of 'electron-main'
42+ | | - models/
4243| | - reducers/ //- Redux reducers
4344| | - renderer/ //- React / frontend components
4445| | | - components/
Original file line number Diff line number Diff line change 88 "public" : [" public/" ],
99 "actions" : [" actions/" ],
1010 "main" : [" main/" ],
11+ "models" : [" models/" ],
1112 "reducers" : [" reducers/" ],
1213 "renderer" : [" renderer/" ],
1314 "utils" : [" utils" ]
Original file line number Diff line number Diff line change 1515 " public" ,
1616 " actions" ,
1717 " main" ,
18+ " models" ,
1819 " reducers" ,
1920 " renderer" ,
2021 " utils"
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ let mainConfig = {
2222 '~' : __dirname ,
2323 'actions' : srcPath ( 'actions' ) ,
2424 'main' : srcPath ( 'main' ) ,
25+ 'models' : srcPath ( 'models' ) ,
2526 'reducers' : srcPath ( 'reducers' ) ,
2627 'utils' : srcPath ( 'utils' )
2728 } ,
@@ -70,6 +71,7 @@ let rendererConfig = {
7071 alias : {
7172 '~' : __dirname ,
7273 'public' : srcPath ( 'public' ) ,
74+ 'models' : srcPath ( 'models' ) ,
7375 'renderer' : srcPath ( 'renderer' ) ,
7476 'utils' : srcPath ( 'utils' )
7577 } ,
You can’t perform that action at this time.
0 commit comments