Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/angular-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- main
paths:
- 'python/**'
- 'multimodal-ui/**'
pull_request:
branches:
- main
paths:
- 'python/**'
- 'multimodal-ui/**'

jobs:
angular-tests:
Expand Down
32 changes: 27 additions & 5 deletions multimodal-ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"outputPath": "dist/multimodal-ui",
"index": "src/index.html",
Expand Down Expand Up @@ -78,7 +78,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"options": {
"port": 8085,
"host": "127.0.0.1"
Expand All @@ -94,10 +94,10 @@
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n"
"builder": "@angular/build:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"builder": "@angular/build:karma",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
Expand Down Expand Up @@ -131,7 +131,29 @@
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
"style": "scss",
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
},
"cli": {
Expand Down
1 change: 0 additions & 1 deletion multimodal-ui/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ module.exports = tseslint.config(
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: ".",
},
},
},
Expand Down
Loading