1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/angular.json

210 lines
6.7 KiB
JSON

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"defaultCollection": "@angular-eslint/schematics"
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
"pigallery2": {
"root": "",
"sourceRoot": "src/frontend",
"projectType": "application",
"schematics": {
"@schematics/angular:application": {
"strict": true
}
},
"prefix": "app",
"i18n": {
"sourceLocale": {
"code": "en",
"baseHref": ""
},
"locales": {
"zh": {
"baseHref": "",
"translation": "src/frontend/translate/messages.cn.xlf"
},
"de": {
"baseHref": "",
"translation": "src/frontend/translate/messages.de.xlf"
},
"es": {
"baseHref": "",
"translation": "src/frontend/translate/messages.es.xlf"
},
"fr": {
"baseHref": "",
"translation": "src/frontend/translate/messages.fr.xlf"
},
"hu": {
"baseHref": "",
"translation": "src/frontend/translate/messages.hu.xlf"
},
"id": {
"baseHref": "",
"translation": "src/frontend/translate/messages.id.xlf"
},
"it": {
"baseHref": "",
"translation": "src/frontend/translate/messages.it.xlf"
},
"ro": {
"baseHref": "",
"translation": "src/frontend/translate/messages.ro.xlf"
},
"ru": {
"baseHref": "",
"translation": "src/frontend/translate/messages.ru.xlf"
},
"sv": {
"baseHref": "",
"translation": "src/frontend/translate/messages.sv.xlf"
},
"pl": {
"baseHref": "",
"translation": "src/frontend/translate/messages.pl.xlf"
}
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"localize": true,
"aot": true,
"crossOrigin": "anonymous",
"outputPath": "dist",
"index": "src/frontend/index.html",
"progress": true,
"main": "src/frontend/main.ts",
"tsConfig": "src/frontend/tsconfig.app.json",
"polyfills": "src/frontend/polyfills.ts",
"assets": [
"src/frontend/assets",
{
"glob": "**/*",
"input": "node_modules/leaflet/dist/images/",
"output": "./assets/"
}
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.css",
"node_modules/ngx-bootstrap/datepicker/bs-datepicker.css",
"node_modules/open-iconic/font/css/open-iconic-bootstrap.css",
"node_modules/ngx-toastr/toastr.css",
"node_modules/leaflet/dist/leaflet.css",
"node_modules/leaflet.markercluster/dist/MarkerCluster.css",
"node_modules/leaflet.markercluster/dist/MarkerCluster.Default.css",
"src/frontend/bootstrap-switch.css",
"src/frontend/styles.css"
],
"scripts": [
"node_modules/marked/marked.min.js"
],
"i18nMissingTranslation": "warning"
},
"configurations": {
"dev": {
"outputPath": "dist/en",
"localize": false,
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
"watch": true
},
"production": {
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"fileReplacements": [
{
"replace": "src/frontend/environments/environment.ts",
"with": "src/frontend/environments/environment.prod.ts"
}
],
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "pigallery2:build"
},
"configurations": {
"production": {
"browserTarget": "pigallery2:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "pigallery2:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/frontend/test.ts",
"karmaConfig": "./karma.conf.js",
"polyfills": "src/frontend/polyfills.ts",
"tsConfig": "src/frontend/tsconfig.spec.json",
"scripts": [],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/ngx-toastr/toastr.css",
"node_modules/bootstrap/dist/css/bootstrap.css",
"node_modules/open-iconic/font/css/open-iconic-bootstrap.css",
"node_modules/ngx-bootstrap/datepicker/bs-datepicker.css",
"node_modules/leaflet/dist/leaflet.css",
"node_modules/leaflet.markercluster/dist/MarkerCluster.css",
"node_modules/leaflet.markercluster/dist/MarkerCluster.Default.css",
"src/frontend/bootstrap-switch.css",
"src/frontend/styles.css"
],
"assets": [
"src/frontend/assets",
{
"glob": "**/*",
"input": "node_modules/leaflet/dist/images/",
"output": "./assets/"
}
]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}
},
"defaultProject": "pigallery2"
}