mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
1bd901feab
Fix: Dark theme, lnd payment message, node lookup connect, Issues 1211, 1210, 1134
131 lines
3.7 KiB
JSON
131 lines
3.7 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"RTLApp": {
|
|
"projectType": "application",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"root": "",
|
|
"sourceRoot": "src",
|
|
"prefix": "rtl",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"baseHref": "/rtl/",
|
|
"outputPath": "frontend",
|
|
"index": "src/index.html",
|
|
"main": "src/main.ts",
|
|
"polyfills": [
|
|
"zone.js",
|
|
"src/polyfills.ts"
|
|
],
|
|
"tsConfig": "src/tsconfig.app.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
"src/assets"
|
|
],
|
|
"styles": [
|
|
"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": [],
|
|
"allowedCommonJsDependencies": [
|
|
"buffer",
|
|
"rfdc",
|
|
"sha256",
|
|
"qrcode",
|
|
"otplib",
|
|
"pdfmake/build/pdfmake",
|
|
"pdfmake/build/vfs_fonts"
|
|
]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "20mb",
|
|
"maximumError": "50mb"
|
|
},
|
|
{
|
|
"type": "anyComponentStyle",
|
|
"maximumWarning": "20mb",
|
|
"maximumError": "50mb"
|
|
}
|
|
],
|
|
"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": "RTLApp:build:production"
|
|
},
|
|
"development": {
|
|
"browserTarget": "RTLApp:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "RTLApp:build"
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
"options": {
|
|
"polyfills": [
|
|
"zone.js",
|
|
"zone.js/testing",
|
|
"src/polyfills.ts"
|
|
],
|
|
"tsConfig": "src/tsconfig.spec.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
"src/assets"
|
|
],
|
|
"styles": [
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"analytics": false
|
|
}
|
|
}
|