{ "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "newProjectRoot": "projects", "projects": { "demovote-frontend": { "projectType": "application", "schematics": { "@schematics/angular": { "component": { "skipTests": true, "style": "css" }, "module": { "skipTests": true, "style": "css" }, "service": { "skipTests": true, "style": "css" } } }, "root": "", "sourceRoot": "src", "prefix": "app", "i18n": { "sourceLocale": "fr" }, "architect": { "build": { "builder": "@angular/build:application", "options": { "outputPath": "dist/demovote-frontend", "baseHref": "./", "index": "src/index.html", "browser": "src/main.ts", "polyfills": [ "zone.js", "@angular/localize/init" ], "tsConfig": "tsconfig.app.json", "assets": [ { "glob": "**/*", "input": "public" } ], "styles": [ "node_modules/bootstrap/dist/css/bootstrap.min.css", "src/styles.css" ], "scripts": [ "node_modules/jquery/dist/jquery.min.js", "node_modules/bootstrap/dist/js/bootstrap.bundle.min.js" ] }, "configurations": { "production": { "budgets": [ { "type": "initial", "maximumWarning": "2MB", "maximumError": "2MB" }, { "type": "anyComponentStyle", "maximumWarning": "4kB", "maximumError": "8kB" } ], "outputHashing": "all" }, "development": { "optimization": false, "extractLicenses": false, "sourceMap": true, "fileReplacements": [ { "replace": "src/app/env.ts", "with": "src/app/env.dev.ts" }] } }, "defaultConfiguration": "production" }, "serve": { "builder": "@angular/build:dev-server", "options": { "proxyConfig": "src/proxy.conf.json" "ssl": true, "sslKey": "src/assets/ssl/key.pem", "sslCert": "src/assets/ssl/cert.pem" }, "configurations": { "production": { "buildTarget": "demovote-frontend:build:production" }, "development": { "buildTarget": "demovote-frontend:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular/build:extract-i18n" }, "test": { "builder": "@angular/build:karma", "options": { "polyfills": [ "zone.js", "zone.js/testing", "@angular/localize/init" ], "tsConfig": "tsconfig.spec.json", "assets": [ { "glob": "**/*", "input": "public" } ], "styles": [ "src/styles.css" ], "scripts": [] } } } } }, "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": "." } } }