UNPKG

340 BJavaScriptView Raw
1'use strict';
2
3const path = require('path');
4
5const rootPath = path.resolve(process.cwd());
6const srcPath = path.join(rootPath, 'src', 'index.js');
7const buildPath = path.join(rootPath, 'build', 'main.js');
8const customConfigPath = path.join(rootPath, 'nodify.config.js');
9
10module.exports = {
11 srcPath,
12 buildPath,
13 customConfigPath,
14};