Skip to content

Commit

Permalink
Complete ng 12 with test
Browse files Browse the repository at this point in the history
  • Loading branch information
almothafar committed Sep 15, 2024
1 parent cefdc69 commit 12b31c3
Show file tree
Hide file tree
Showing 3 changed files with 527 additions and 492 deletions.
27 changes: 18 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
"configurations": {
"production": {
"tsConfig": "projects/auto-complete/tsconfig.lib.prod.json"
}
}
},
"development": {}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
Expand Down Expand Up @@ -104,20 +106,24 @@
"maximumError": "10kb"
}
]
}
},
"development": {}
},
"defaultConfiguration": ""
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demo:build"
},
"configurations": {
"production": {
"browserTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
}
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand Down Expand Up @@ -158,14 +164,17 @@
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "projects/demo/e2e/protractor.conf.js",
"devServerTarget": "demo:serve"
"protractorConfig": "projects/demo/e2e/protractor.conf.js"
},
"configurations": {
"production": {
"devServerTarget": "demo:serve:production"
},
"development": {
"devServerTarget": "demo:serve:development"
}
}
},
"defaultConfiguration": "development"
}
}
}}
Expand Down
Loading

0 comments on commit 12b31c3

Please sign in to comment.