public-gateway-cacher/angular.json

177 lines
5.4 KiB
JSON
Raw Normal View History

2019-11-29 02:20:50 +00:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
2020-07-10 04:53:52 +00:00
"cli": {
2022-03-11 03:20:29 +00:00
"packageManager": "pnpm",
2022-03-10 21:57:15 +00:00
"analytics": "10b848ad-8b81-4346-852f-5eff89573a85",
"defaultCollection": "@angular-eslint/schematics"
2020-07-10 04:53:52 +00:00
},
2019-11-29 02:20:50 +00:00
"newProjectRoot": "projects",
"projects": {
"public-gateway-cacher": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
2020-07-08 07:42:42 +00:00
},
"@schematics/angular:application": {
"strict": true
2019-11-29 02:20:50 +00:00
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
2019-11-29 03:07:50 +00:00
"outputPath": "dist/angular",
2019-11-29 02:20:50 +00:00
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
2022-03-11 07:06:35 +00:00
"assets": ["src/favicon.png", "src/assets"],
"styles": ["src/styles.scss"],
2022-03-10 22:31:47 +00:00
"stylePreprocessorOptions": {
2022-03-11 07:06:35 +00:00
"includePaths": ["node_modules"]
2022-03-10 22:31:47 +00:00
},
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
2019-11-29 02:20:50 +00:00
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"extractLicenses": true,
2019-12-03 06:02:57 +00:00
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
},
"gitlab": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.gitlab.ts"
}
],
"optimization": true,
"outputHashing": "all",
"extractLicenses": true,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
},
"ipfs": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.ipfs.ts"
}
],
"optimization": true,
"outputHashing": "all",
"extractLicenses": true,
2019-11-29 02:20:50 +00:00
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
},
"defaultConfiguration": ""
2019-11-29 02:20:50 +00:00
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "public-gateway-cacher:build"
},
"configurations": {
"production": {
"browserTarget": "public-gateway-cacher:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "public-gateway-cacher:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
2022-03-11 07:06:35 +00:00
"assets": ["src/favicon.png", "src/assets"],
"styles": ["src/styles.scss"],
2022-03-10 22:31:47 +00:00
"stylePreprocessorOptions": {
2022-03-11 07:06:35 +00:00
"includePaths": ["node_modules"]
2022-03-10 22:31:47 +00:00
},
2019-11-29 02:20:50 +00:00
"scripts": []
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "public-gateway-cacher:serve"
},
"configurations": {
"production": {
"devServerTarget": "public-gateway-cacher:serve:production"
}
}
2022-03-10 21:57:15 +00:00
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
2022-03-11 07:06:35 +00:00
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
2022-03-10 21:57:15 +00:00
}
2019-11-29 02:20:50 +00:00
}
}
}
},
2020-07-10 04:53:52 +00:00
"defaultProject": "public-gateway-cacher"
2020-07-08 01:11:46 +00:00
}