| { | |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
| "version": 1, | |
| "cli": { | |
| "packageManager": "pnpm", | |
| "analytics": false, | |
| "cache": { | |
| "enabled": false | |
| } | |
| }, | |
| "newProjectRoot": "projects", | |
| "projects": { | |
| "basic-persister": { | |
| "projectType": "application", | |
| "schematics": { | |
| "@schematics/angular:component": { | |
| "inlineTemplate": true, | |
| "inlineStyle": true, | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:class": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:directive": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:guard": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:interceptor": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:pipe": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:resolver": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:service": { | |
| "skipTests": true | |
| } | |
| }, | |
| "root": "", | |
| "sourceRoot": "src", | |
| "prefix": "app", | |
| "architect": { | |
| "build": { | |
| "builder": "@angular/build:application", | |
| "options": { | |
| "outputPath": "dist/basic-persister", | |
| "index": "src/index.html", | |
| "browser": "src/main.ts", | |
| "polyfills": ["zone.js"], | |
| "tsConfig": "tsconfig.app.json", | |
| "assets": ["src/favicon.ico", "src/assets"], | |
| "styles": [], | |
| "scripts": [] | |
| }, | |
| "configurations": { | |
| "production": { | |
| "budgets": [ | |
| { | |
| "type": "initial", | |
| "maximumWarning": "500kb", | |
| "maximumError": "1mb" | |
| }, | |
| { | |
| "type": "anyComponentStyle", | |
| "maximumWarning": "2kb", | |
| "maximumError": "4kb" | |
| } | |
| ], | |
| "outputHashing": "all" | |
| }, | |
| "development": { | |
| "optimization": false, | |
| "extractLicenses": false, | |
| "sourceMap": true | |
| } | |
| }, | |
| "defaultConfiguration": "production" | |
| }, | |
| "serve": { | |
| "builder": "@angular/build:dev-server", | |
| "configurations": { | |
| "production": { | |
| "buildTarget": "basic-persister:build:production" | |
| }, | |
| "development": { | |
| "buildTarget": "basic-persister:build:development" | |
| } | |
| }, | |
| "defaultConfiguration": "development" | |
| }, | |
| "extract-i18n": { | |
| "builder": "@angular/build:extract-i18n", | |
| "options": { | |
| "buildTarget": "basic-persister:build" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |