-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathangular-cli-build.js
More file actions
27 lines (24 loc) · 874 Bytes
/
angular-cli-build.js
File metadata and controls
27 lines (24 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Angular-CLI build configuration
// This file lists all the node_modules files that will be used in a build
// Also see https://github.com/angular/angular-cli/wiki/3rd-party-libs
/* global require, module */
var Angular2App = require('angular-cli/lib/broccoli/angular2-app');
module.exports = function(defaults) {
return new Angular2App(defaults, {
vendorNpmFiles: [
'systemjs/dist/system-polyfills.js',
'systemjs/dist/system.src.js',
'zone.js/dist/**/*.+(js|js.map)',
'es6-shim/es6-shim.js',
'reflect-metadata/**/*.+(ts|js|js.map)',
'rxjs/**/*.+(js|js.map)',
'@angular/**/*.+(js|js.map)',
'symbol-observable/**/*.+(js|js.map)',
'jquery/dist/**/jquery.js',
'jointjs/dist/**/*.+(js|js.map)',
'backbone/backbone.js',
'lodash/**/*.+(js|js.map)',
'underscore/underscore.js'
]
});
};