diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-02-23 14:28:50 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-02-23 14:28:50 -0500 |
commit | 1d46022ec65597c46f27788eae520f36f0bb0324 (patch) | |
tree | 1ef5e38477bcc3f763d3ef2f071c721404f94493 /ufund-ui/angular.json | |
parent | 2fc9729cdf220e03f43183a148f8b5780c50e515 (diff) | |
download | JellySolutions-1d46022ec65597c46f27788eae520f36f0bb0324.tar.gz JellySolutions-1d46022ec65597c46f27788eae520f36f0bb0324.tar.bz2 JellySolutions-1d46022ec65597c46f27788eae520f36f0bb0324.zip |
Initialize angular project
Diffstat (limited to 'ufund-ui/angular.json')
-rw-r--r-- | ufund-ui/angular.json | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/ufund-ui/angular.json b/ufund-ui/angular.json new file mode 100644 index 0000000..3b96b4a --- /dev/null +++ b/ufund-ui/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "ufund-ui": { + "projectType": "application", + "schematics": { + "@schematics/angular:component": { + "standalone": false + }, + "@schematics/angular:directive": { + "standalone": false + }, + "@schematics/angular:pipe": { + "standalone": false + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:application", + "options": { + "outputPath": "dist/ufund-ui", + "index": "src/index.html", + "browser": "src/main.ts", + "polyfills": [ + "zone.js" + ], + "tsConfig": "tsconfig.app.json", + "assets": [ + { + "glob": "**/*", + "input": "public" + } + ], + "styles": [ + "src/styles.css" + ], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kB", + "maximumError": "1MB" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kB", + "maximumError": "8kB" + } + ], + "outputHashing": "all" + }, + "development": { + "optimization": false, + "extractLicenses": false, + "sourceMap": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "ufund-ui:build:production" + }, + "development": { + "buildTarget": "ufund-ui:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n" + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "polyfills": [ + "zone.js", + "zone.js/testing" + ], + "tsConfig": "tsconfig.spec.json", + "assets": [ + { + "glob": "**/*", + "input": "public" + } + ], + "styles": [ + "src/styles.css" + ], + "scripts": [] + } + } + } + } + } +} |