Picsur/frontend/angular.json

100 lines
2.8 KiB
JSON
Raw Normal View History

2022-02-28 20:09:27 +00:00
{
2022-02-28 22:18:07 +00:00
"$schema": "../node_modules/@angular/cli/lib/config/schema.json",
2022-03-19 22:08:20 +00:00
"cli": {
"analytics": false
},
2022-02-28 20:09:27 +00:00
"version": 1,
"newProjectRoot": "projects",
"projects": {
"picsur-frontend": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
2022-05-10 13:03:51 +00:00
"style": "scss",
"skipTests": true
2022-02-28 20:09:27 +00:00
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "",
"sourceRoot": "src",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
2022-04-16 14:35:28 +00:00
"tsConfig": "tsconfig.app.json",
2022-02-28 20:09:27 +00:00
"inlineStyleLanguage": "scss",
"assets": ["src/assets"],
"styles": ["src/styles.scss"],
2022-02-28 22:18:07 +00:00
"scripts": [],
"allowedCommonJsDependencies": [
"validator",
"debug",
"buffer/",
"sha.js"
2022-03-30 20:20:28 +00:00
],
2022-04-16 14:35:28 +00:00
"optimization": true,
"webWorkerTsConfig": "tsconfig.worker.json"
2022-02-28 20:09:27 +00:00
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "picsur-frontend:build:production"
},
"development": {
"browserTarget": "picsur-frontend:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "picsur-frontend:build"
}
}
}
}
},
"defaultProject": "picsur-frontend"
}