From aebce41e3208f60ee6150840f55170047cfbd8f5 Mon Sep 17 00:00:00 2001 From: Justin Walsh Date: Thu, 8 Aug 2024 09:11:51 -0400 Subject: [PATCH] build: Fix typescript project structure, adds tsconfig to the root of tests to satisfy vscode. --- test/tsconfig.json | 3 +++ tsconfig.json | 1 - tsconfig.test.json | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 test/tsconfig.json diff --git a/test/tsconfig.json b/test/tsconfig.json new file mode 100644 index 00000000..4ff0a8e2 --- /dev/null +++ b/test/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../tsconfig.test.json", +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 529b6c0e..571d2b0c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,6 +32,5 @@ ], "include": [ "./src/**/*", - "./test/**/*" ], } diff --git a/tsconfig.test.json b/tsconfig.test.json index f7bb37ed..442baec5 100644 --- a/tsconfig.test.json +++ b/tsconfig.test.json @@ -31,4 +31,8 @@ "node_modules", "types" ], + "include": [ + "./src/**/*", + "./test/**/*", + ] }