UNPKG

@nodulus/logs

Version:
18 lines (16 loc) 628 B
'use strict'; var GulpConfig = (function () { function gulpConfig() { //Got tired of scrolling through all the comments so removed them //Don't hurt me AC :-) this.source = './src/'; this.sourceApp = this.source + 'app/'; this.tsOutputPath = this.source + '/js'; this.allJavaScript = [this.source + '/js/**/*.js']; this.allTypeScript = this.sourceApp + '/**/*.ts'; this.typings = './typings/'; this.libraryTypeScriptDefinitions = './typings/**/*.ts'; } return gulpConfig; })(); module.exports = GulpConfig;