added base dashboard

This commit is contained in:
Bojan Kucera 2025-06-02 20:12:20 -04:00
parent 94e3c96ef6
commit 114c280734
29 changed files with 1022 additions and 950 deletions

View file

@ -7,22 +7,20 @@
"newProjectRoot": "projects",
"projects": {
"trading-dashboard": {
"projectType": "application",
"schematics": {
"projectType": "application", "schematics": {
"@schematics/angular:component": {
"style": "scss"
"style": "css"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"architect": { "build": {
"builder": "@angular/build:application",
"options": {
"browser": "src/main.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"inlineStyleLanguage": "css",
"assets": [
{
"glob": "**/*",
@ -30,7 +28,7 @@
}
],
"styles": [
"src/styles.scss"
"src/styles.css"
]
},
"configurations": {
@ -71,12 +69,11 @@
},
"extract-i18n": {
"builder": "@angular/build:extract-i18n"
},
"test": {
}, "test": {
"builder": "@angular/build:karma",
"options": {
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"inlineStyleLanguage": "css",
"assets": [
{
"glob": "**/*",
@ -84,7 +81,7 @@
}
],
"styles": [
"src/styles.scss"
"src/styles.css"
]
}
}