commit6596d30bd6Author: eneller <erikneller@gmx.de> Date: Mon Jan 6 18:32:41 2025 +0100 center nTeamsSelector commit497b64fe3fAuthor: eneller <erikneller@gmx.de> Date: Mon Jan 6 15:25:24 2025 +0100 remove angular material completely commit4d58880493Author: eneller <erikneller@gmx.de> Date: Mon Jan 6 15:23:05 2025 +0100 replace angular material components with bootstrap commitdcf25ea969Author: eneller <erikneller@gmx.de> Date: Mon Jan 6 13:13:05 2025 +0100 add ng-bootstrap commit48bbdab308Author: eneller <erikneller@gmx.de> Date: Thu Nov 28 11:07:07 2024 +0100 implement nTeams commitf7f8482bc9Author: eneller <erikneller@gmx.de> Date: Thu Nov 28 09:12:38 2024 +0100 update icons commite0a319b32aAuthor: eneller <erikneller@gmx.de> Date: Thu Nov 28 08:48:14 2024 +0100 make pwa for offline usage commit4be3649d43Author: eneller <erikneller@gmx.de> Date: Thu Nov 28 00:53:27 2024 +0100 add padding to nTeamsToggle commit2a596b15c8Author: eneller <erikneller@gmx.de> Date: Thu Nov 28 00:32:41 2024 +0100 fully functional using angular commitd2090f30d4Author: eneller <erikneller@gmx.de> Date: Wed Nov 27 23:40:34 2024 +0100 basic ui alignment, add nTeams commit97f01f924aAuthor: eneller <erikneller@gmx.de> Date: Wed Nov 27 22:37:29 2024 +0100 add basic ui elements commit102f589869Author: eneller <erikneller@gmx.de> Date: Wed Nov 27 22:01:32 2024 +0100 add angular material commit7f5978b226Author: eneller <erikneller@gmx.de> Date: Wed Nov 27 20:15:11 2024 +0100 Initial Angular Commit
112 lines
3.0 KiB
JSON
112 lines
3.0 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"vb": {
|
|
"projectType": "application",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "less"
|
|
}
|
|
},
|
|
"root": "",
|
|
"sourceRoot": "src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:application",
|
|
"options": {
|
|
"outputPath": "dist/vb",
|
|
"index": "src/index.html",
|
|
"browser": "src/main.ts",
|
|
"polyfills": [
|
|
"zone.js",
|
|
"@angular/localize/init"
|
|
],
|
|
"tsConfig": "tsconfig.app.json",
|
|
"inlineStyleLanguage": "less",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "public"
|
|
}
|
|
],
|
|
"styles": [
|
|
"node_modules/bootstrap/dist/css/bootstrap.min.css",
|
|
"src/styles.less"
|
|
],
|
|
"scripts": [],
|
|
"server": "src/main.server.ts",
|
|
"prerender": true,
|
|
"ssr": {
|
|
"entry": "src/server.ts"
|
|
}
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "500kB",
|
|
"maximumError": "1MB"
|
|
},
|
|
{
|
|
"type": "anyComponentStyle",
|
|
"maximumWarning": "4kB",
|
|
"maximumError": "8kB"
|
|
}
|
|
],
|
|
"outputHashing": "all",
|
|
"serviceWorker": "ngsw-config.json"
|
|
},
|
|
"development": {
|
|
"optimization": false,
|
|
"extractLicenses": false,
|
|
"sourceMap": true
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "vb:build:production"
|
|
},
|
|
"development": {
|
|
"buildTarget": "vb:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n"
|
|
},
|
|
"test": {
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
"options": {
|
|
"polyfills": [
|
|
"zone.js",
|
|
"zone.js/testing",
|
|
"@angular/localize/init"
|
|
],
|
|
"tsConfig": "tsconfig.spec.json",
|
|
"inlineStyleLanguage": "less",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "public"
|
|
}
|
|
],
|
|
"styles": [
|
|
"src/styles.less"
|
|
],
|
|
"scripts": []
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|