From b0755bbf627bc8efed5cc97d40c9ee1cd93aae71 Mon Sep 17 00:00:00 2001 From: Florent Date: Tue, 2 Jan 2024 18:14:55 +0100 Subject: [PATCH] fix(demo): fix ts error in global declaration using global import, ex: `__ENVIRONMENT__` in the `demo/full` folder didn't work because there is a `demo/full/tsconfig` file that has more priority than `src/tsconfig` in the `demo/full` folder. The fix was to add the global import file in the `demo/full/tsconfig` --- demo/full/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/demo/full/tsconfig.json b/demo/full/tsconfig.json index bb60c8df6e..908c1b67c3 100644 --- a/demo/full/tsconfig.json +++ b/demo/full/tsconfig.json @@ -21,6 +21,7 @@ ] }, "include": [ + "../../src/globals.prod.d.ts", "./scripts/**/*" ] }