2018-04-13 02:20:01 +00:00
|
|
|
{
|
2018-09-07 12:39:58 +00:00
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
2018-04-13 02:20:01 +00:00
|
|
|
"version": 1,
|
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
|
"projects": {
|
|
|
|
|
"angular.io-example": {
|
2019-05-09 20:56:24 +00:00
|
|
|
"projectType": "application",
|
2018-04-13 02:20:01 +00:00
|
|
|
"root": "",
|
2018-09-07 12:39:58 +00:00
|
|
|
"sourceRoot": "src",
|
2018-04-13 02:20:01 +00:00
|
|
|
"prefix": "app",
|
|
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
|
|
|
"options": {
|
2018-05-10 15:30:55 +00:00
|
|
|
"outputPath": "dist",
|
2018-04-13 02:20:01 +00:00
|
|
|
"index": "src/index.html",
|
|
|
|
|
"main": "src/main.ts",
|
2022-10-31 10:55:29 +00:00
|
|
|
"polyfills": ["zone.js"],
|
2019-05-09 20:56:24 +00:00
|
|
|
"tsConfig": "tsconfig.app.json",
|
2018-04-13 02:20:01 +00:00
|
|
|
"assets": [
|
2018-09-07 12:39:58 +00:00
|
|
|
"src/favicon.ico",
|
|
|
|
|
"src/assets"
|
2018-04-13 02:20:01 +00:00
|
|
|
],
|
|
|
|
|
"styles": [
|
2018-09-07 12:39:58 +00:00
|
|
|
"src/styles.css"
|
2018-04-13 02:20:01 +00:00
|
|
|
],
|
2021-07-24 09:03:46 +00:00
|
|
|
"scripts": []
|
2018-04-13 02:20:01 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
2018-10-08 19:34:44 +00:00
|
|
|
"budgets": [
|
|
|
|
|
{
|
|
|
|
|
"type": "initial",
|
2020-09-21 17:52:26 +00:00
|
|
|
"maximumWarning": "500kb",
|
|
|
|
|
"maximumError": "1mb"
|
2020-03-17 20:28:49 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "anyComponentStyle",
|
2020-09-21 17:52:26 +00:00
|
|
|
"maximumWarning": "2kb",
|
|
|
|
|
"maximumError": "4kb"
|
2018-10-08 19:34:44 +00:00
|
|
|
}
|
2021-07-24 09:03:46 +00:00
|
|
|
],
|
|
|
|
|
"outputHashing": "all"
|
|
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"buildOptimizer": false,
|
|
|
|
|
"optimization": false,
|
|
|
|
|
"vendorChunk": true,
|
|
|
|
|
"extractLicenses": false,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"namedChunks": true
|
2018-04-13 02:20:01 +00:00
|
|
|
}
|
2021-07-24 09:03:46 +00:00
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "production"
|
2018-04-13 02:20:01 +00:00
|
|
|
},
|
|
|
|
|
"serve": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"browserTarget": "angular.io-example:build:production"
|
2021-07-24 09:03:46 +00:00
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"browserTarget": "angular.io-example:build:development"
|
2018-04-13 02:20:01 +00:00
|
|
|
}
|
2021-07-24 09:03:46 +00:00
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "development"
|
2018-04-13 02:20:01 +00:00
|
|
|
},
|
|
|
|
|
"extract-i18n": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
|
|
|
"options": {
|
|
|
|
|
"browserTarget": "angular.io-example:build"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
|
"options": {
|
2022-10-31 10:55:29 +00:00
|
|
|
"polyfills": ["zone.js", "zone.js/testing"],
|
2019-05-09 20:56:24 +00:00
|
|
|
"tsConfig": "tsconfig.spec.json",
|
2018-04-13 02:20:01 +00:00
|
|
|
"assets": [
|
2018-09-07 12:39:58 +00:00
|
|
|
"src/favicon.ico",
|
|
|
|
|
"src/assets"
|
2019-05-09 20:56:24 +00:00
|
|
|
],
|
|
|
|
|
"styles": [
|
|
|
|
|
"src/styles.css"
|
|
|
|
|
],
|
|
|
|
|
"scripts": []
|
2018-04-13 02:20:01 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"e2e": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:protractor",
|
|
|
|
|
"options": {
|
|
|
|
|
"protractorConfig": "e2e/protractor.conf.js",
|
|
|
|
|
"devServerTarget": "angular.io-example:serve"
|
2018-09-07 12:39:58 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"devServerTarget": "angular.io-example:serve:production"
|
|
|
|
|
}
|
2018-04-13 02:20:01 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-22 13:11:04 +00:00
|
|
|
}
|
2018-09-07 12:39:58 +00:00
|
|
|
}
|