From dd3278555c780e257deebcb5b8fc1c0c9ed3c157 Mon Sep 17 00:00:00 2001 From: MicroBlock <66859419+MicroCBer@users.noreply.github.com> Date: Sat, 20 Apr 2024 22:37:04 +0800 Subject: [PATCH] chore: fix tsconfig types (#88) --- packages/tests/tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/tests/tsconfig.json b/packages/tests/tsconfig.json index d2545e1c..6f195e9c 100644 --- a/packages/tests/tsconfig.json +++ b/packages/tests/tsconfig.json @@ -4,11 +4,11 @@ "outDir": "lib", "rootDir": "src", "types": [ - "@types/mocha", - "@types/node", + "mocha", + "node", ], }, "include": [ "src", ], -} \ No newline at end of file +}