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/**/*", + ] }