blob: 68240d7f0c97438a68b5dc7e303c88338dd16736 [file] [log] [blame]
Iftekharul Islam99d199f2017-03-24 15:28:25 -05001/*eslint-env node */
2/*global module: true, __dirname: true */
3
4'use strict';
5
6module.exports = {
7 'targetFolderPath': './target',
8 'srcFolderPath': './app',
9 'tempFolderPath': __dirname + '/.temp',
10 'nodeModulesFolderPath': './node_modules',
11 'bowerFolderPath': './app/bower_components',
12 'dirname': __dirname,
13 'excludePath': '!./app/vendors/**/*'
14};