| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- {
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
- "version": 1,
- "newProjectRoot": "projects",
- "projects": {
- "sam": {
- "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/sam",
- "index": "src/index.html",
- "browser": "src/main.ts",
- "polyfills": [
- "zone.js"
- ],
- "tsConfig": "tsconfig.app.json",
- "assets": [
- {
- "glob": "**/*",
- "input": "public"
- }
- ],
- "styles": [
- "@angular/material/prebuilt-themes/azure-blue.css",
- "src/styles.css"
- ],
- "scripts": [
- "node_modules/luckysheet/dist/plugins/js/plugin.js",
- "node_modules/luckysheet/dist/luckysheet.umd.js"
- ]
- },
- "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-devkit/build-angular:dev-server",
- "configurations": {
- "production": {
- "buildTarget": "sam:build:production"
- },
- "development": {
- "buildTarget": "sam: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": "tsconfig.spec.json",
- "assets": [
- {
- "glob": "**/*",
- "input": "public"
- }
- ],
- "styles": [
- "@angular/material/prebuilt-themes/azure-blue.css",
- "src/styles.css"
- ],
- "scripts": []
- }
- }
- }
- }
- },
- "cli": {
- "analytics": "b325aaf5-806e-4f8e-b27d-3dc2f788d879",
- "cache": {
- "enabled": false
- }
- }
- }
|