2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/angular.json

131 lines
3.7 KiB
JSON
Raw Normal View History

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"RTLApp": {
"projectType": "application",
2019-07-27 18:20:17 +00:00
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "rtl",
2019-07-27 18:20:17 +00:00
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
2022-12-14 05:41:44 +00:00
"baseHref": "/rtl/",
2021-12-29 23:08:41 +00:00
"outputPath": "frontend",
"index": "src/index.html",
"main": "src/main.ts",
2022-12-13 23:53:41 +00:00
"polyfills": [
2022-12-28 02:05:42 +00:00
"zone.js",
"src/polyfills.ts"
2022-12-13 23:53:41 +00:00
],
"tsConfig": "src/tsconfig.app.json",
2022-12-13 23:53:41 +00:00
"inlineStyleLanguage": "scss",
"assets": [
"src/assets"
],
"styles": [
2022-12-15 05:40:10 +00:00
"src/app/shared/theme/styles/styles.scss",
"node_modules/material-icons/iconfont/material-icons.css",
"node_modules/roboto-fontface/css/roboto/roboto-fontface.css"
2022-12-13 23:53:41 +00:00
],
2022-12-28 02:05:42 +00:00
"scripts": [],
"allowedCommonJsDependencies": [
2022-12-13 23:53:41 +00:00
"buffer",
"rfdc",
"sha256",
"qrcode",
2021-12-29 23:08:41 +00:00
"otplib",
"pdfmake/build/pdfmake",
2022-12-28 02:05:42 +00:00
"pdfmake/build/vfs_fonts"
]
},
"configurations": {
"production": {
2019-07-27 18:20:17 +00:00
"budgets": [
{
"type": "initial",
2022-12-13 23:53:41 +00:00
"maximumWarning": "20mb",
"maximumError": "50mb"
},
{
"type": "anyComponentStyle",
2021-12-29 23:08:41 +00:00
"maximumWarning": "20mb",
"maximumError": "50mb"
2019-07-27 18:20:17 +00:00
}
2022-12-13 23:53:41 +00:00
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
2022-12-13 23:53:41 +00:00
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "RTLApp:build:production"
2022-12-13 23:53:41 +00:00
},
"development": {
"browserTarget": "RTLApp:build:development"
}
2022-12-13 23:53:41 +00:00
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "RTLApp:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
2022-12-13 23:53:41 +00:00
"polyfills": [
"zone.js",
2022-12-28 02:05:42 +00:00
"zone.js/testing",
"src/polyfills.ts"
2022-12-13 23:53:41 +00:00
],
"tsConfig": "src/tsconfig.spec.json",
2022-12-13 23:53:41 +00:00
"inlineStyleLanguage": "scss",
"assets": [
"src/assets"
],
"styles": [
2022-12-15 05:40:10 +00:00
"src/app/shared/theme/styles/styles.scss",
"node_modules/material-icons/iconfont/material-icons.css",
"node_modules/roboto-fontface/css/roboto/roboto-fontface.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
2022-12-28 02:05:42 +00:00
}
}
}
},
"cli": {
"analytics": false
}
}