map-alliance/angular.json

88 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2019-07-02 08:11:23 -04:00
{
2023-12-11 21:32:05 -05:00
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"proj": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/assets",
"src/manifest.json"
],
"styles": [
"./node_modules/bootstrap-scss/bootstrap.scss",
"./node_modules/leaflet/dist/leaflet.css",
"src/styles.scss"
],
"scripts": [
"./node_modules/leaflet/dist/leaflet.js",
"./node_modules/leaflet-polylinedecorator/dist/leaflet.polylineDecorator.js",
"./node_modules/leaflet-openweathermap/leaflet-openweathermap.js",
"./node_modules/leaflet-rotatedmarker/leaflet.rotatedMarker.js",
"./node_modules/leaflet-bing-layer/leaflet-bing-layer.js",
"./node_modules/leaflet.gridlayer.googlemutant/Leaflet.GoogleMutant.js",
"./node_modules/esri-leaflet/dist/esri-leaflet.js",
"./src/assets/js/leaflet.Editable.js",
"./node_modules/jquery/dist/jquery.js"
]
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
2023-12-11 21:47:21 -05:00
"maximumWarning": "2mb",
"maximumError": "5mb"
2023-12-11 21:32:05 -05:00
},
{
"type": "anyComponentStyle",
2023-12-11 21:47:21 -05:00
"maximumWarning": "250kb",
"maximumError": "1mb"
2023-12-11 21:32:05 -05:00
}
],
2023-12-11 22:21:59 -05:00
"outputHashing": "all",
"serviceWorker": "ngsw-config.json"
2023-12-11 21:32:05 -05:00
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "proj:build:production"
},
"development": {
"buildTarget": "proj:build:development"
}
},
"defaultConfiguration": "development"
}
}
}
}
2019-07-09 11:55:53 -04:00
}