| { |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
| "version": 1, |
| "newProjectRoot": "projects", |
| "projects": { |
| "GrammAI": { |
| "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/gramm-ai", |
| "index": "src/index.html", |
| "browser": "src/main.ts", |
| "polyfills": [ |
| "zone.js" |
| ], |
| "tsConfig": "tsconfig.app.json", |
| "assets": [ |
| "src/favicon.ico", |
| "src/assets" |
| ], |
| "styles": [ |
| "node_modules/@fortawesome/fontawesome-free/css/all.min.css", |
| "src/styles.css" |
| ], |
| "scripts": [] |
| }, |
| "configurations": { |
| "production": { |
| "budgets": [ |
| { |
| "type": "initial", |
| "maximumWarning": "900kb", |
| "maximumError": "2mb" |
| }, |
| { |
| "type": "anyComponentStyle", |
| "maximumWarning": "16kb", |
| "maximumError": "32kb" |
| } |
| ], |
| "outputHashing": "all" |
| }, |
| "development": { |
| "optimization": false, |
| "extractLicenses": false, |
| "sourceMap": true |
| } |
| }, |
| "defaultConfiguration": "production" |
| }, |
| "serve": { |
| "builder": "@angular-devkit/build-angular:dev-server", |
| "configurations": { |
| "production": { |
| "buildTarget": "GrammAI:build:production" |
| }, |
| "development": { |
| "buildTarget": "GrammAI:build:development" |
| } |
| }, |
| "defaultConfiguration": "development" |
| }, |
| "extract-i18n": { |
| "builder": "@angular-devkit/build-angular:extract-i18n", |
| "options": { |
| "buildTarget": "GrammAI:build" |
| } |
| }, |
| "test": { |
| "builder": "@angular-devkit/build-angular:karma", |
| "options": { |
| "polyfills": [ |
| "zone.js", |
| "zone.js/testing" |
| ], |
| "tsConfig": "tsconfig.spec.json", |
| "assets": [ |
| "src/favicon.ico", |
| "src/assets" |
| ], |
| "styles": [ |
| "src/styles.css" |
| ], |
| "scripts": [], |
| "karmaConfig": "karma.conf.js" |
| } |
| } |
| } |
| } |
| }, |
| "cli": { |
| "analytics": false |
| } |
| } |
|
|