| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- {
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
- "version": 1,
- "newProjectRoot": "projects",
- "projects": {
- "ai-voc-frontend": {
- "projectType": "application",
- "schematics": {
- "@schematics/angular:component": {
- "style": "scss",
- "standalone": true
- },
- "@schematics/angular:directive": {
- "standalone": true
- },
- "@schematics/angular:pipe": {
- "standalone": true
- }
- },
- "root": "",
- "sourceRoot": "src",
- "prefix": "app",
- "architect": {
- "build": {
- "builder": "@angular-devkit/build-angular:browser",
- "options": {
- "outputPath": "dist",
- "index": "src/index.html",
- "main": "src/main.ts",
- "polyfills": [
- "zone.js"
- ],
- "tsConfig": "tsconfig.app.json",
- "inlineStyleLanguage": "scss",
- "assets": [
- "src/favicon.ico",
- "src/assets"
- ],
- "styles": [
- "src/styles.scss"
- ],
- "scripts": [],
- "allowedCommonJsDependencies": [
- "echarts",
- "date-fns",
- "bowser",
- "camelcase",
- "decamelize",
- "p-retry",
- "crypto-js",
- "recorder-core",
- "dingtalk-jsapi",
- "spark-md5",
- "semver",
- "querystring",
- "file-saver"
- ]
- },
- "configurations": {
- "production": {
- "budgets": [
- {
- "type": "initial",
- "maximumWarning": "20mb",
- "maximumError": "25mb"
- },
- {
- "type": "anyComponentStyle",
- "maximumWarning": "20mb",
- "maximumError": "25mb"
- },
- {
- "type": "allScript",
- "maximumWarning": "20mb",
- "maximumError": "25mb"
- },
- {
- "type": "all",
- "maximumWarning": "20mb",
- "maximumError": "25mb"
- }
- ],
- "outputHashing": "all",
- "optimization": true,
- "sourceMap": false,
- "namedChunks": false,
- "extractLicenses": true,
- "vendorChunk": false,
- "buildOptimizer": true
- },
- "development": {
- "buildOptimizer": false,
- "optimization": false,
- "vendorChunk": true,
- "extractLicenses": false,
- "sourceMap": true,
- "namedChunks": true
- }
- },
- "defaultConfiguration": "production"
- },
- "serve": {
- "builder": "@angular-devkit/build-angular:dev-server",
- "options": {
- "headers": {
- "Cache-Control": "no-store, no-cache, must-revalidate, proxy-revalidate",
- "Pragma": "no-cache",
- "Expires": "0"
- }
- },
- "configurations": {
- "production": {
- "buildTarget": "ai-voc-frontend:build:production"
- },
- "development": {
- "buildTarget": "ai-voc-frontend:build:development"
- }
- },
- "defaultConfiguration": "development"
- },
- "extract-i18n": {
- "builder": "@angular-devkit/build-angular:extract-i18n",
- "options": {
- "buildTarget": "ai-voc-frontend:build"
- }
- },
- "test": {
- "builder": "@angular-devkit/build-angular:karma",
- "options": {
- "polyfills": [
- "zone.js",
- "zone.js/testing"
- ],
- "tsConfig": "tsconfig.spec.json",
- "inlineStyleLanguage": "scss",
- "assets": [
- "src/favicon.ico",
- "src/assets"
- ],
- "styles": [
- "src/styles.scss"
- ],
- "scripts": []
- }
- },
- "lint": {
- "builder": "@angular-eslint/builder:lint",
- "options": {
- "lintFilePatterns": [
- "src/**/*.ts",
- "src/**/*.html"
- ]
- }
- }
- }
- }
- },
- "cli": {
- "analytics": false,
- "cache": {
- "enabled": true,
- "path": ".angular/cache",
- "environment": "all"
- },
- "schematicCollections": [
- "@angular-eslint/schematics"
- ]
- }
- }
|