Files
Picsur/frontend/angular.json

109 lines
3.1 KiB
JSON
Raw Permalink Normal View History

2022-02-28 21:09:27 +01:00
{
2022-02-28 23:18:07 +01:00
"$schema": "../node_modules/@angular/cli/lib/config/schema.json",
2022-03-19 23:08:20 +01:00
"cli": {
"analytics": false
},
2022-02-28 21:09:27 +01:00
"version": 1,
"newProjectRoot": "projects",
"projects": {
"picsur-frontend": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
2022-05-10 15:03:51 +02:00
"style": "scss",
"skipTests": true
2022-02-28 21:09:27 +01:00
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "",
"sourceRoot": "src",
"architect": {
"build": {
2022-12-27 16:56:59 +01:00
"builder": "@angular-builders/custom-webpack:browser",
2022-02-28 21:09:27 +01:00
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
2022-04-16 16:35:28 +02:00
"tsConfig": "tsconfig.app.json",
2022-02-28 21:09:27 +01:00
"inlineStyleLanguage": "scss",
2022-09-06 16:32:16 +02:00
"assets": [
"src/assets",
{
"glob": "**/*",
"input": "../branding",
"output": "./assets/branding"
}
],
2022-02-28 21:09:27 +01:00
"styles": ["src/styles.scss"],
2022-02-28 23:18:07 +01:00
"scripts": [],
"allowedCommonJsDependencies": [
2022-08-26 12:38:05 +02:00
"ngx-auto-unsubscribe-decorator",
2022-12-25 22:58:37 +01:00
"moment",
2022-12-27 16:56:59 +01:00
"platform",
"form-data"
2022-03-30 22:20:28 +02:00
],
2022-04-16 16:35:28 +02:00
"optimization": true,
2022-12-27 16:56:59 +01:00
"webWorkerTsConfig": "tsconfig.worker.json",
"customWebpackConfig": {
"path": "./custom-webpack.config.js"
}
2022-02-28 21:09:27 +01:00
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
2022-12-27 16:56:59 +01:00
"maximumWarning": "1mb",
"maximumError": "2mb"
2022-02-28 21:09:27 +01:00
},
{
"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"
}
}
}
}
2022-12-20 16:21:25 +01:00
}
2022-02-28 21:09:27 +01:00
}