| { |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
| "version": 1, |
| "cli": { |
| "packageManager": "pnpm", |
| "analytics": false, |
| "cache": { |
| "enabled": false |
| } |
| }, |
| "newProjectRoot": "projects", |
| "projects": { |
| "auto-refetching": { |
| "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/auto-refetching", |
| "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": "auto-refetching:build:production" |
| }, |
| "development": { |
| "buildTarget": "auto-refetching:build:development" |
| } |
| }, |
| "defaultConfiguration": "development" |
| }, |
| "extract-i18n": { |
| "builder": "@angular/build:extract-i18n", |
| "options": { |
| "buildTarget": "auto-refetching:build" |
| } |
| } |
| } |
| } |
| }, |
| "schematics": { |
| "@schematics/angular:component": { |
| "type": "component" |
| }, |
| "@schematics/angular:directive": { |
| "type": "directive" |
| }, |
| "@schematics/angular:service": { |
| "type": "service" |
| }, |
| "@schematics/angular:guard": { |
| "typeSeparator": "." |
| }, |
| "@schematics/angular:interceptor": { |
| "typeSeparator": "." |
| }, |
| "@schematics/angular:module": { |
| "typeSeparator": "." |
| }, |
| "@schematics/angular:pipe": { |
| "typeSeparator": "." |
| }, |
| "@schematics/angular:resolver": { |
| "typeSeparator": "." |
| } |
| } |
| } |
|
|