From 422b29a29d77326d204b78c5083cc9cec0771750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Landabaso=20D=C3=ADaz?= Date: Sat, 9 Dec 2023 06:50:24 +0100 Subject: [PATCH] tsconfig: allow importing json files (for new test fixtures) --- tsconfig.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 73a1ed5..8cec887 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,7 @@ { - "extends": "./node_modules/@bitcoinerlab/configs/tsconfig.json" -} + { + "compilerOptions": { + "resolveJsonModule": true, + }, + "extends": "./node_modules/@bitcoinerlab/configs/tsconfig.json" + }