From 5f51e0919f2f1a67e0b20c7cd04343b6ebd04eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Huchet?= Date: Tue, 13 Feb 2024 10:30:28 +0100 Subject: [PATCH] fix: ts error message (#56) --- test/tsconfig.json | 4 +--- tsconfig.json | 5 ++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/test/tsconfig.json b/test/tsconfig.json index 95898fc..460cf36 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -3,7 +3,5 @@ "compilerOptions": { "noEmit": true }, - "references": [ - {"path": ".."} - ] + "references": [{ "path": ".." }] } diff --git a/tsconfig.json b/tsconfig.json index c4053fb..3c516a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,9 +8,8 @@ "rootDir": "src", "strict": true, "target": "es2019", + "composite": true, "useUnknownInCatchVariables": false }, - "include": [ - "src/**/*" - ] + "include": ["src/**/*"] }