diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-01 20:23:36 +0000 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-01 20:23:36 +0000 |
commit | 7d3640f824f46490b47bd95f1c5a16644f712068 (patch) | |
tree | def8f858e3ff859586c7f3cbf6bb88684fd22c02 /sandbox/TestAppOgnjen/FrontEnd/angular.json | |
parent | 61cb1570a3410c85a4489b97c172e3a50715f36c (diff) | |
parent | 8a72f0631b812bebc38d52290e98fadb01ac3204 (diff) |
Merge branch 'testAppOgnjen' into 'dev'
Test app ognjen
See merge request igrannonica/neuronstellar!4
Diffstat (limited to 'sandbox/TestAppOgnjen/FrontEnd/angular.json')
-rw-r--r-- | sandbox/TestAppOgnjen/FrontEnd/angular.json | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/sandbox/TestAppOgnjen/FrontEnd/angular.json b/sandbox/TestAppOgnjen/FrontEnd/angular.json new file mode 100644 index 00000000..e14e9aab --- /dev/null +++ b/sandbox/TestAppOgnjen/FrontEnd/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "ToDoFront": { + "projectType": "application", + "schematics": { + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/to-do-front", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.app.json", + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "src/styles.css" + ], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "ToDoFront:build:production" + }, + "development": { + "browserTarget": "ToDoFront:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "ToDoFront: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": [ + "src/styles.css" + ], + "scripts": [] + } + } + } + } + }, + "defaultProject": "ToDoFront" +} |