removed warnings and errors

This commit is contained in:
Robert Nasarek 2022-09-19 23:10:07 +02:00
parent fc1b0a36a9
commit d27e3ecf01
9 changed files with 136 additions and 62 deletions

View file

@ -0,0 +1,29 @@
const path = require('path');
const rootPath = path.resolve(__dirname, '../..');
const srcPath = path.resolve(rootPath, 'src');
const srcMainPath = path.resolve(srcPath, 'main');
const srcRendererPath = path.resolve(srcPath, 'renderer');
const appPackagePath = path.resolve(rootPath, 'package.json');
const appNodeModulesPath = path.resolve(rootPath, 'node_modules');
const distPath = path.resolve(rootPath, 'dist');
const distMainPath = path.resolve(distPath, 'main');
const distRendererPath = path.resolve(distPath, 'renderer');
const buildPath = path.resolve(rootPath, 'build');
export default {
rootPath,
srcPath,
srcMainPath,
srcRendererPath,
appPackagePath,
appNodeModulesPath,
distPath,
distMainPath,
distRendererPath,
buildPath,
};