2018-04-03 20:31:03 +00:00
|
|
|
{
|
2019-10-15 13:42:31 +00:00
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
2018-04-03 20:31:03 +00:00
|
|
|
"version": 1,
|
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
|
"projects": {
|
|
|
|
|
"cli-hello-world": {
|
|
|
|
|
"projectType": "application",
|
2019-10-15 13:42:31 +00:00
|
|
|
"schematics": {},
|
|
|
|
|
"root": "",
|
|
|
|
|
"sourceRoot": "src",
|
|
|
|
|
"prefix": "app",
|
2018-04-03 20:31:03 +00:00
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:application",
|
2018-04-03 20:31:03 +00:00
|
|
|
"options": {
|
2024-05-03 17:21:11 +00:00
|
|
|
"outputHashing": "none",
|
|
|
|
|
"outputPath": {
|
|
|
|
|
"base": "dist",
|
|
|
|
|
"browser": ""
|
|
|
|
|
},
|
2018-04-03 20:31:03 +00:00
|
|
|
"index": "src/index.html",
|
2026-02-10 16:00:55 +00:00
|
|
|
"polyfills": ["zone.js"],
|
2019-10-15 13:42:31 +00:00
|
|
|
"tsConfig": "tsconfig.app.json",
|
|
|
|
|
"aot": true,
|
2022-03-22 13:09:18 +00:00
|
|
|
"assets": ["src/favicon.ico", "src/assets"],
|
|
|
|
|
"styles": ["src/styles.css"],
|
2019-10-02 11:28:23 +00:00
|
|
|
"scripts": [],
|
2023-03-10 15:05:46 +00:00
|
|
|
"optimization": false,
|
2024-05-03 17:21:11 +00:00
|
|
|
"progress": false,
|
|
|
|
|
"browser": "src/main.ts"
|
2018-04-03 20:31:03 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
2019-10-15 13:42:31 +00:00
|
|
|
"production": {
|
2018-04-03 20:31:03 +00:00
|
|
|
"optimization": true,
|
2024-05-03 17:21:11 +00:00
|
|
|
"outputHashing": "none",
|
2019-10-15 13:42:31 +00:00
|
|
|
"sourceMap": false,
|
2018-04-03 20:31:03 +00:00
|
|
|
"namedChunks": false,
|
|
|
|
|
"extractLicenses": true,
|
2019-10-15 13:42:31 +00:00
|
|
|
"budgets": [
|
|
|
|
|
{
|
|
|
|
|
"type": "initial",
|
|
|
|
|
"maximumWarning": "2mb",
|
|
|
|
|
"maximumError": "5mb"
|
|
|
|
|
},
|
2018-04-03 20:31:03 +00:00
|
|
|
{
|
2019-10-15 13:42:31 +00:00
|
|
|
"type": "anyComponentStyle",
|
|
|
|
|
"maximumWarning": "6kb",
|
|
|
|
|
"maximumError": "10kb"
|
2018-04-03 20:31:03 +00:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"serve": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:dev-server",
|
2018-04-03 20:31:03 +00:00
|
|
|
"options": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-hello-world:build"
|
2018-04-03 20:31:03 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"dev": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-hello-world:build:dev"
|
2018-04-03 20:31:03 +00:00
|
|
|
},
|
|
|
|
|
"production": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-hello-world:build:production"
|
2018-10-31 11:33:17 +00:00
|
|
|
},
|
2022-03-22 13:09:18 +00:00
|
|
|
"ci": {},
|
2018-10-31 11:33:17 +00:00
|
|
|
"ci-production": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-hello-world:build:production"
|
2018-04-03 20:31:03 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"extract-i18n": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:extract-i18n",
|
2018-04-03 20:31:03 +00:00
|
|
|
"options": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-hello-world:build"
|
2018-04-03 20:31:03 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
|
"options": {
|
2026-02-10 16:00:55 +00:00
|
|
|
"polyfills": ["zone.js", "zone.js/testing"],
|
2019-10-15 13:42:31 +00:00
|
|
|
"tsConfig": "tsconfig.spec.json",
|
|
|
|
|
"karmaConfig": "karma.conf.js",
|
2022-03-22 13:09:18 +00:00
|
|
|
"assets": ["src/favicon.ico", "src/assets"],
|
|
|
|
|
"styles": ["src/styles.css"],
|
2019-10-15 13:42:31 +00:00
|
|
|
"scripts": [],
|
2019-10-02 11:28:23 +00:00
|
|
|
"progress": false,
|
|
|
|
|
"watch": false
|
2018-04-03 20:31:03 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"lint": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:tslint",
|
2018-04-03 20:31:03 +00:00
|
|
|
"options": {
|
2022-03-22 13:09:18 +00:00
|
|
|
"tsConfig": ["tsconfig.app.json", "tsconfig.spec.json", "e2e/tsconfig.json"],
|
|
|
|
|
"exclude": ["**/node_modules/**"]
|
2018-04-03 20:31:03 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-22 13:09:18 +00:00
|
|
|
}
|
2024-09-18 08:14:10 +00:00
|
|
|
},
|
|
|
|
|
"cli": {
|
|
|
|
|
"cache": {
|
|
|
|
|
"enabled": false
|
|
|
|
|
},
|
|
|
|
|
"analytics": false
|
2022-03-22 13:09:18 +00:00
|
|
|
}
|
2018-04-03 20:31:03 +00:00
|
|
|
}
|