| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- {
- "$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": "."
- }
- }
- }
|