diff options
| author | FivePixels <37427166+FivePixels@users.noreply.github.com> | 2021-04-11 01:22:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-11 01:22:40 -0500 |
| commit | 33a349b2e5b96552c24535cafa9d81af77279796 (patch) | |
| tree | cfba21fe8ebde66ad4d6671c4538aa09ad7fc905 /src/web/angular.json | |
| parent | 0007b7e4fb5b48334b35e1fd77c2bcf814089f7a (diff) | |
| parent | 766fe430e65031cd392bf824c437a5d9cee53296 (diff) | |
| download | StreamFinder-33a349b2e5b96552c24535cafa9d81af77279796.tar.xz StreamFinder-33a349b2e5b96552c24535cafa9d81af77279796.zip | |
Merge pull request #4 from FivePixels/amar
Amar
Diffstat (limited to 'src/web/angular.json')
| -rw-r--r-- | src/web/angular.json | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/src/web/angular.json b/src/web/angular.json new file mode 100644 index 0000000..cc19c3e --- /dev/null +++ b/src/web/angular.json @@ -0,0 +1,129 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "client": { + "projectType": "application", + "schematics": {}, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/client", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.app.json", + "aot": true, + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "./node_modules/bootstrap/dist/css/bootstrap.min.css", + "./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css", + "src/custom-theme.scss", + "src/styles.css" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true, + "budgets": [ + { + "type": "initial", + "maximumWarning": "2mb", + "maximumError": "5mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "6kb", + "maximumError": "10kb" + } + ] + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "client:build" + }, + "configurations": { + "production": { + "browserTarget": "client:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "client:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "./node_modules/bootstrap/dist/css/bootstrap.min.css", + "./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css", + "src/styles.css" + ], + "scripts": [] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "tsconfig.app.json", + "tsconfig.spec.json", + "e2e/tsconfig.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + }, + "e2e": { + "builder": "@angular-devkit/build-angular:protractor", + "options": { + "protractorConfig": "e2e/protractor.conf.js", + "devServerTarget": "client:serve" + }, + "configurations": { + "production": { + "devServerTarget": "client:serve:production" + } + } + } + } + } + }, + "defaultProject": "client" +}
\ No newline at end of file |
