UNPKG

628 BJavaScriptView Raw
1'use strict';
2var GulpConfig = (function () {
3 function gulpConfig() {
4 //Got tired of scrolling through all the comments so removed them
5 //Don't hurt me AC :-)
6 this.source = './src/';
7 this.sourceApp = this.source + 'app/';
8
9 this.tsOutputPath = this.source + '/js';
10 this.allJavaScript = [this.source + '/js/**/*.js'];
11 this.allTypeScript = this.sourceApp + '/**/*.ts';
12
13 this.typings = './typings/';
14 this.libraryTypeScriptDefinitions = './typings/**/*.ts';
15 }
16 return gulpConfig;
17})();
18module.exports = GulpConfig;
\No newline at end of file