2021-02-11 17:24:51 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
|
|
|
"version": 1,
|
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
|
"projects": {
|
|
|
|
|
"cli-elements-universal": {
|
|
|
|
|
"projectType": "application",
|
|
|
|
|
"schematics": {
|
|
|
|
|
"@schematics/angular:application": {
|
|
|
|
|
"strict": true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"root": "",
|
|
|
|
|
"sourceRoot": "src",
|
|
|
|
|
"prefix": "app",
|
|
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:application",
|
2021-02-11 17:24:51 +00:00
|
|
|
"options": {
|
2024-05-03 17:21:11 +00:00
|
|
|
"outputHashing": "none",
|
|
|
|
|
"outputPath": "dist/cli-elements-universal",
|
2021-02-11 17:24:51 +00:00
|
|
|
"index": "src/index.html",
|
2024-05-03 17:21:11 +00:00
|
|
|
"polyfills": ["zone.js"],
|
2021-02-11 17:24:51 +00:00
|
|
|
"tsConfig": "tsconfig.app.json",
|
|
|
|
|
"aot": true,
|
2024-05-03 17:21:11 +00:00
|
|
|
"assets": ["src/favicon.ico", "src/assets"],
|
|
|
|
|
"styles": ["src/styles.css"],
|
2021-02-11 17:24:51 +00:00
|
|
|
"scripts": [],
|
2023-03-10 15:05:46 +00:00
|
|
|
"progress": false,
|
2024-05-03 17:21:11 +00:00
|
|
|
"optimization": false,
|
|
|
|
|
"browser": "src/main.ts",
|
|
|
|
|
"server": "src/main.server.ts",
|
|
|
|
|
"prerender": true,
|
|
|
|
|
"ssr": false
|
2021-02-11 17:24:51 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"optimization": true,
|
2024-05-03 17:21:11 +00:00
|
|
|
"outputHashing": "none",
|
2021-02-11 17:24:51 +00:00
|
|
|
"sourceMap": false,
|
|
|
|
|
"namedChunks": false,
|
|
|
|
|
"extractLicenses": true,
|
|
|
|
|
"budgets": [
|
|
|
|
|
{
|
|
|
|
|
"type": "initial",
|
|
|
|
|
"maximumWarning": "500kb",
|
|
|
|
|
"maximumError": "1mb"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
|
"maximumWarning": "2kb",
|
|
|
|
|
"maximumError": "4kb"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"serve": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:dev-server",
|
2021-02-11 17:24:51 +00:00
|
|
|
"options": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-elements-universal:build"
|
2021-02-11 17:24:51 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-elements-universal:build:production"
|
2021-02-11 17:24:51 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"extract-i18n": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:extract-i18n",
|
2021-02-11 17:24:51 +00:00
|
|
|
"options": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "cli-elements-universal:build"
|
2021-02-11 17:24:51 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
|
"options": {
|
2024-05-03 17:21:11 +00:00
|
|
|
"polyfills": ["zone.js", "zone.js/testing"],
|
2021-02-11 17:24:51 +00:00
|
|
|
"tsConfig": "tsconfig.spec.json",
|
|
|
|
|
"karmaConfig": "karma.conf.js",
|
2024-05-03 17:21:11 +00:00
|
|
|
"assets": ["src/favicon.ico", "src/assets"],
|
|
|
|
|
"styles": ["src/styles.css"],
|
2021-02-11 17:24:51 +00:00
|
|
|
"scripts": [],
|
|
|
|
|
"watch": false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"lint": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:tslint",
|
2021-02-11 17:24:51 +00:00
|
|
|
"options": {
|
|
|
|
|
"tsConfig": [
|
|
|
|
|
"tsconfig.app.json",
|
|
|
|
|
"tsconfig.spec.json",
|
|
|
|
|
"e2e/tsconfig.json",
|
|
|
|
|
"tsconfig.server.json"
|
|
|
|
|
],
|
2024-05-03 17:21:11 +00:00
|
|
|
"exclude": ["**/node_modules/**"]
|
2021-02-11 17:24:51 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"e2e": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:protractor",
|
|
|
|
|
"options": {
|
|
|
|
|
"protractorConfig": "e2e/protractor.conf.js",
|
|
|
|
|
"devServerTarget": "cli-elements-universal:serve",
|
|
|
|
|
"webdriverUpdate": false
|
|
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"devServerTarget": "cli-elements-universal:serve:production"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-18 08:14:10 +00:00
|
|
|
},
|
|
|
|
|
"cli": {
|
|
|
|
|
"cache": {
|
|
|
|
|
"enabled": false
|
|
|
|
|
},
|
|
|
|
|
"analytics": false
|
2022-03-22 13:09:18 +00:00
|
|
|
}
|
2021-02-11 17:24:51 +00:00
|
|
|
}
|