123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- {
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
- "version": 1,
- "newProjectRoot": "projects",
- "projects": {
- "textbook": {
- "projectType": "application",
- "schematics": {
- "@schematics/angular:component": {
- "style": "scss"
- }
- },
- "root": "projects/textbook",
- "sourceRoot": "projects/textbook/src",
- "prefix": "app",
- "architect": {
- "build": {
- "builder": "@angular-devkit/build-angular:application",
- "options": {
- "outputPath": "dist/textbook",
- "index": "projects/textbook/src/index.html",
- "browser": "projects/textbook/src/main.ts",
- "polyfills": [
- "zone.js"
- ],
- "tsConfig": "projects/textbook/tsconfig.app.json",
- "inlineStyleLanguage": "scss",
- "assets": [
- {
- "glob": "**/*",
- "input": "projects/textbook/public"
- },
- {
- "glob": "**/*",
- "input": "./node_modules/@ant-design/icons-angular/src/inline-svg/",
- "output": "/assets/"
- }
- ],
- "styles": [
- "@angular/material/prebuilt-themes/azure-blue.css",
- "projects/textbook/src/styles.scss",
- "node_modules/ng-zorro-antd/ng-zorro-antd.min.css",
- {
- "input": "node_modules/@ionic/angular/css/core.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/normalize.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/structure.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/typography.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/display.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/padding.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/float-elements.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/text-alignment.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/text-transformation.css"
- },
- {
- "input": "node_modules/@ionic/angular/css/flex-utils.css"
- }
- ],
- "scripts": []
- },
- "configurations": {
- "production": {
- "budgets": [
- {
- "type": "initial",
- "maximumWarning": "5MB",
- "maximumError": "10MB"
- },
- {
- "type": "anyComponentStyle",
- "maximumWarning": "2MB",
- "maximumError": "4MB"
- }
- ],
- "outputHashing": "all"
- },
- "development": {
- "optimization": false,
- "extractLicenses": false,
- "sourceMap": true
- }
- },
- "defaultConfiguration": "production"
- },
- "serve": {
- "builder": "@angular-devkit/build-angular:dev-server",
- "configurations": {
- "production": {
- "buildTarget": "textbook:build:production"
- },
- "development": {
- "buildTarget": "textbook: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": "projects/textbook/tsconfig.spec.json",
- "inlineStyleLanguage": "scss",
- "assets": [
- {
- "glob": "**/*",
- "input": "projects/textbook/public"
- }
- ],
- "styles": [
- "@angular/material/prebuilt-themes/azure-blue.css",
- "projects/textbook/src/styles.scss"
- ],
- "scripts": []
- }
- }
- }
- }
- },
- "cli": {
- "analytics": "2bc1f0cc-3633-48b2-a456-d6ad82ce77e6",
- "schematicCollections": [
- "@ionic/angular-toolkit"
- ]
- },
- "schematics": {
- "@ionic/angular-toolkit:component": {
- "styleext": "scss"
- },
- "@ionic/angular-toolkit:page": {
- "styleext": "scss"
- }
- }
- }
|