From c54558abdfa0dec8095886580e743107ce3c0cfb Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Fri, 7 Jun 2024 14:52:34 -1000 Subject: [PATCH] fix(client): :bug: Import JSON files with type JSON --- client/lysand/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lysand/constants.ts b/client/lysand/constants.ts index 1682f60..1188a9f 100644 --- a/client/lysand/constants.ts +++ b/client/lysand/constants.ts @@ -1,4 +1,4 @@ -import pkg from "../package.json"; +import pkg from "../package.json" with { type: "json" }; export const NO_REDIRECT = "urn:ietf:wg:oauth:2.0:oob"; export const DEFAULT_SCOPE = ["read", "write", "follow"];