1
- module . exports = function ( config ) {
1
+ module . exports = function ( config ) {
2
2
config . set ( {
3
3
basePath : '' ,
4
4
frameworks : [ 'jasmine' ] ,
@@ -9,39 +9,39 @@ module.exports = function(config) {
9
9
customLaunchers : {
10
10
// chrome setup for travis CI using chromium
11
11
Chrome_travis_ci : {
12
- base : 'Chrome' ,
13
- flags : [ '--no-sandbox' ]
14
- } ,
12
+ base : 'Chrome' ,
13
+ flags : [ '--no-sandbox' ]
14
+ }
15
15
} ,
16
16
files : [
17
- { pattern : 'node_modules/systemjs/dist/system-polyfills.js' , included : true , watched : true } ,
18
- { pattern : 'node_modules/systemjs/dist/system.src.js' , included : true , watched : true } ,
19
- { pattern : 'node_modules/es6-shim/es6-shim.js' , included : true , watched : true } ,
20
- { pattern : 'node_modules/angular2/bundles/angular2-polyfills.js' , included : true , watched : true } ,
21
- { pattern : 'node_modules/rxjs/bundles/Rx.js' , included : true , watched : true } ,
22
- { pattern : 'node_modules/angular2/bundles/angular2.js' , included : true , watched : true } ,
23
- { pattern : 'node_modules/angular2/bundles/http.dev.js' , included : true , watched : true } ,
24
- { pattern : 'node_modules/angular2/bundles/router.dev.js' , included : true , watched : true } ,
25
- { pattern : 'node_modules/angular2/bundles/testing.dev.js' , included : true , watched : true } ,
17
+ { pattern : 'node_modules/systemjs/dist/system-polyfills.js' , included : true , watched : true } ,
18
+ { pattern : 'node_modules/systemjs/dist/system.src.js' , included : true , watched : true } ,
19
+ { pattern : 'node_modules/es6-shim/es6-shim.js' , included : true , watched : true } ,
20
+ { pattern : 'node_modules/angular2/bundles/angular2-polyfills.js' , included : true , watched : true } ,
21
+ { pattern : 'node_modules/rxjs/bundles/Rx.js' , included : true , watched : true } ,
22
+ { pattern : 'node_modules/angular2/bundles/angular2.js' , included : true , watched : true } ,
23
+ { pattern : 'node_modules/angular2/bundles/http.dev.js' , included : true , watched : true } ,
24
+ { pattern : 'node_modules/angular2/bundles/router.dev.js' , included : true , watched : true } ,
25
+ { pattern : 'node_modules/angular2/bundles/testing.dev.js' , included : true , watched : true } ,
26
26
27
27
28
- { pattern : 'karma-test-shim.js' , included : true , watched : true } ,
28
+ { pattern : 'karma-test-shim.js' , included : true , watched : true } ,
29
29
30
30
// paths loaded via module imports
31
- { pattern : 'dist/**/*.js' , included : false , watched : true } ,
31
+ { pattern : 'dist/**/*.js' , included : false , watched : true } ,
32
32
33
33
// paths loaded via Angular's component compiler
34
34
// (these paths need to be rewritten, see proxies section)
35
- { pattern : 'dist/**/*.html' , included : false , watched : true } ,
36
- { pattern : 'dist/**/*.css' , included : false , watched : true } ,
35
+ { pattern : 'dist/**/*.html' , included : false , watched : true } ,
36
+ { pattern : 'dist/**/*.css' , included : false , watched : true } ,
37
37
38
38
// paths to support debugging with source maps in dev tools
39
- { pattern : 'dist/**/*.ts' , included : false , watched : false } ,
40
- { pattern : 'dist/**/*.js.map' , included : false , watched : false }
39
+ { pattern : 'dist/**/*.ts' , included : false , watched : false } ,
40
+ { pattern : 'dist/**/*.js.map' , included : false , watched : false }
41
41
] ,
42
42
proxies : {
43
43
// required for component assets fetched by Angular's compiler
44
- " /app/" : " /base/dist/app/"
44
+ ' /app/' : ' /base/dist/app/'
45
45
} ,
46
46
exclude : [ ] ,
47
47
preprocessors : { } ,
0 commit comments