Newer
Older
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"index": "./src/frontend/core/index.html",
"main": "./src/frontend/core/main.ts",
"polyfills": "./src/frontend/core/polyfills.ts",
"tsConfig": "./src/frontend/core/tsconfig.app.json",
"./src/frontend/core/favicon.ico",
"./src/frontend/assets"
"./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
"replace": "./src/frontend/core/environments/environment.ts",
"with": "./src/frontend/core/environments/environment.prod.ts"
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"configurations": {
"production": {
"browserTarget": "parapheur:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "parapheur:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "./src/frontend/core/test.ts",
"polyfills": "./src/frontend/core/polyfills.ts",
"tsConfig": "./src/frontend/core/tsconfig.spec.json",
"karmaConfig": "./src/frontend/core/karma.conf.js",
"./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
"src/frontend/core/favicon.ico",
"src/frontend/assets"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"./src/frontend/core/tsconfig.app.json",
"./src/frontend/core/tsconfig.spec.json"
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
"parapheur-e2e": {
"root": "e2e/",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "parapheur:serve"
},
"configurations": {
"production": {
"devServerTarget": "parapheur:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
]
}
}
}