mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
120 lines
3.3 KiB
JSON
120 lines
3.3 KiB
JSON
|
{
|
||
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||
|
"version": 1,
|
||
|
"newProjectRoot": "projects",
|
||
|
"projects": {
|
||
|
"dimension": {
|
||
|
"projectType": "application",
|
||
|
"schematics": {
|
||
|
"@schematics/angular:application": {
|
||
|
"strict": true
|
||
|
}
|
||
|
},
|
||
|
"root": "",
|
||
|
"sourceRoot": "web",
|
||
|
"prefix": "app",
|
||
|
"architect": {
|
||
|
"build": {
|
||
|
"builder": "@angular-devkit/build-angular:browser",
|
||
|
"options": {
|
||
|
"outputPath": "build/web",
|
||
|
"index": "web/index.html",
|
||
|
"main": "web/main.ts",
|
||
|
"polyfills": "web/polyfills.ts",
|
||
|
"tsConfig": "tsconfig.app.json",
|
||
|
"assets": [
|
||
|
"web/assets"
|
||
|
],
|
||
|
"styles": [
|
||
|
"web/style/app.scss"
|
||
|
],
|
||
|
"scripts": [],
|
||
|
"progress": true
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"budgets": [
|
||
|
{
|
||
|
"type": "initial",
|
||
|
"maximumWarning": "500kb",
|
||
|
"maximumError": "4mb"
|
||
|
},
|
||
|
{
|
||
|
"type": "anyComponentStyle",
|
||
|
"maximumWarning": "2kb",
|
||
|
"maximumError": "32kb"
|
||
|
}
|
||
|
],
|
||
|
"fileReplacements": [
|
||
|
{
|
||
|
"replace": "web/environments/environment.ts",
|
||
|
"with": "web/environments/environment.prod.ts"
|
||
|
}
|
||
|
],
|
||
|
"outputHashing": "all"
|
||
|
},
|
||
|
"development": {
|
||
|
"buildOptimizer": false,
|
||
|
"optimization": false,
|
||
|
"vendorChunk": true,
|
||
|
"extractLicenses": false,
|
||
|
"sourceMap": true,
|
||
|
"namedChunks": true
|
||
|
}
|
||
|
},
|
||
|
"defaultConfiguration": "production"
|
||
|
},
|
||
|
"serve": {
|
||
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"browserTarget": "dimension:build:production"
|
||
|
},
|
||
|
"development": {
|
||
|
"browserTarget": "dimension:build:development"
|
||
|
}
|
||
|
},
|
||
|
"defaultConfiguration": "development",
|
||
|
"options": {
|
||
|
"proxyConfig": "proxy.conf.json"
|
||
|
}
|
||
|
},
|
||
|
"extract-i18n": {
|
||
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||
|
"options": {
|
||
|
"browserTarget": "dimension:build"
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"builder": "@angular-devkit/build-angular:karma",
|
||
|
"options": {
|
||
|
"main": "web/test.ts",
|
||
|
"polyfills": "web/polyfills.ts",
|
||
|
"tsConfig": "tsconfig.spec.json",
|
||
|
"karmaConfig": "karma.conf.js",
|
||
|
"assets": [
|
||
|
"web/favicon.ico",
|
||
|
"web/assets"
|
||
|
],
|
||
|
"styles": [],
|
||
|
"scripts": []
|
||
|
}
|
||
|
},
|
||
|
"lint": {
|
||
|
"builder": "@angular-eslint/builder:lint",
|
||
|
"options": {
|
||
|
"lintFilePatterns": [
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.html"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"defaultProject": "dimension",
|
||
|
"cli": {
|
||
|
"defaultCollection": "@angular-eslint/schematics"
|
||
|
}
|
||
|
}
|