From 56e8c58ec818491802b2be950684c78cd8d6f88e Mon Sep 17 00:00:00 2001 From: Joao Eduardo Luis Date: Sat, 6 May 2023 18:34:27 +0000 Subject: [PATCH] ui: add missing dependency Apparently ng-bootstrap requires this for _something_, and all of a sudden we started getting errors. :shrug: Signed-off-by: Joao Eduardo Luis --- src/main.ts | 2 ++ tsconfig.app.json | 4 +++- tsconfig.spec.json | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index c58dc05..be6bfab 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,3 +1,5 @@ +/// + import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; diff --git a/tsconfig.app.json b/tsconfig.app.json index 374cc9d..ec26f70 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -3,7 +3,9 @@ "extends": "./tsconfig.json", "compilerOptions": { "outDir": "./out-tsc/app", - "types": [] + "types": [ + "@angular/localize" + ] }, "files": [ "src/main.ts" diff --git a/tsconfig.spec.json b/tsconfig.spec.json index be7e9da..c63b698 100644 --- a/tsconfig.spec.json +++ b/tsconfig.spec.json @@ -4,7 +4,8 @@ "compilerOptions": { "outDir": "./out-tsc/spec", "types": [ - "jasmine" + "jasmine", + "@angular/localize" ] }, "include": [