esuau
6 years ago
committed by
Alexis Hernandez
11 changed files with 7415 additions and 13712 deletions
@ -1,60 +0,0 @@ |
|||
{ |
|||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
|||
"project": { |
|||
"name": "web-ui" |
|||
}, |
|||
"apps": [ |
|||
{ |
|||
"root": "src", |
|||
"outDir": "dist", |
|||
"assets": [ |
|||
"assets", |
|||
"favicon.ico" |
|||
], |
|||
"index": "index.html", |
|||
"main": "main.ts", |
|||
"polyfills": "polyfills.ts", |
|||
"test": "test.ts", |
|||
"tsconfig": "tsconfig.app.json", |
|||
"testTsconfig": "tsconfig.spec.json", |
|||
"prefix": "app", |
|||
"styles": [ |
|||
"styles.css" |
|||
], |
|||
"scripts": [], |
|||
"environmentSource": "environments/environment.ts", |
|||
"environments": { |
|||
"dev": "environments/environment.ts", |
|||
"prod": "environments/environment.prod.ts" |
|||
} |
|||
} |
|||
], |
|||
"e2e": { |
|||
"protractor": { |
|||
"config": "./protractor.conf.js" |
|||
} |
|||
}, |
|||
"lint": [ |
|||
{ |
|||
"project": "src/tsconfig.app.json", |
|||
"exclude": "**/node_modules/**" |
|||
}, |
|||
{ |
|||
"project": "src/tsconfig.spec.json", |
|||
"exclude": "**/node_modules/**" |
|||
}, |
|||
{ |
|||
"project": "e2e/tsconfig.e2e.json", |
|||
"exclude": "**/node_modules/**" |
|||
} |
|||
], |
|||
"test": { |
|||
"karma": { |
|||
"config": "./karma.conf.js" |
|||
} |
|||
}, |
|||
"defaults": { |
|||
"styleExt": "css", |
|||
"component": {} |
|||
} |
|||
} |
@ -0,0 +1,132 @@ |
|||
{ |
|||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
|||
"version": 1, |
|||
"newProjectRoot": "projects", |
|||
"projects": { |
|||
"web-ui": { |
|||
"root": "", |
|||
"sourceRoot": "src", |
|||
"projectType": "application", |
|||
"architect": { |
|||
"build": { |
|||
"builder": "@angular-devkit/build-angular:browser", |
|||
"options": { |
|||
"outputPath": "dist", |
|||
"index": "src/index.html", |
|||
"main": "src/main.ts", |
|||
"tsConfig": "src/tsconfig.app.json", |
|||
"polyfills": "src/polyfills.ts", |
|||
"assets": [ |
|||
"src/assets", |
|||
"src/favicon.ico" |
|||
], |
|||
"styles": [ |
|||
"src/styles.css" |
|||
], |
|||
"scripts": [] |
|||
}, |
|||
"configurations": { |
|||
"production": { |
|||
"optimization": true, |
|||
"outputHashing": "all", |
|||
"sourceMap": false, |
|||
"extractCss": true, |
|||
"namedChunks": false, |
|||
"aot": true, |
|||
"extractLicenses": true, |
|||
"vendorChunk": false, |
|||
"buildOptimizer": true, |
|||
"fileReplacements": [ |
|||
{ |
|||
"replace": "src/environments/environment.ts", |
|||
"with": "src/environments/environment.prod.ts" |
|||
} |
|||
] |
|||
} |
|||
} |
|||
}, |
|||
"serve": { |
|||
"builder": "@angular-devkit/build-angular:dev-server", |
|||
"options": { |
|||
"browserTarget": "web-ui:build" |
|||
}, |
|||
"configurations": { |
|||
"production": { |
|||
"browserTarget": "web-ui:build:production" |
|||
} |
|||
} |
|||
}, |
|||
"extract-i18n": { |
|||
"builder": "@angular-devkit/build-angular:extract-i18n", |
|||
"options": { |
|||
"browserTarget": "web-ui:build" |
|||
} |
|||
}, |
|||
"test": { |
|||
"builder": "@angular-devkit/build-angular:karma", |
|||
"options": { |
|||
"main": "src/test.ts", |
|||
"karmaConfig": "./karma.conf.js", |
|||
"polyfills": "src/polyfills.ts", |
|||
"tsConfig": "src/tsconfig.spec.json", |
|||
"scripts": [], |
|||
"styles": [ |
|||
"src/styles.css" |
|||
], |
|||
"assets": [ |
|||
"src/assets", |
|||
"src/favicon.ico" |
|||
] |
|||
} |
|||
}, |
|||
"lint": { |
|||
"builder": "@angular-devkit/build-angular:tslint", |
|||
"options": { |
|||
"tsConfig": [ |
|||
"src/tsconfig.app.json", |
|||
"src/tsconfig.spec.json" |
|||
], |
|||
"exclude": [ |
|||
"**/node_modules/**" |
|||
] |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"web-ui-e2e": { |
|||
"root": "e2e", |
|||
"sourceRoot": "e2e", |
|||
"projectType": "application", |
|||
"architect": { |
|||
"e2e": { |
|||
"builder": "@angular-devkit/build-angular:protractor", |
|||
"options": { |
|||
"protractorConfig": "./protractor.conf.js", |
|||
"devServerTarget": "web-ui:serve" |
|||
} |
|||
}, |
|||
"lint": { |
|||
"builder": "@angular-devkit/build-angular:tslint", |
|||
"options": { |
|||
"tsConfig": [ |
|||
"e2e/tsconfig.e2e.json" |
|||
], |
|||
"exclude": [ |
|||
"**/node_modules/**" |
|||
] |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"defaultProject": "web-ui", |
|||
"schematics": { |
|||
"@schematics/angular:component": { |
|||
"prefix": "app", |
|||
"styleext": "css" |
|||
}, |
|||
"@schematics/angular:directive": { |
|||
"prefix": "app" |
|||
} |
|||
} |
|||
} |
File diff suppressed because it is too large
File diff suppressed because it is too large
Loading…
Reference in new issue