From 9b99e51296b59d280ef5b1f32048681e33dee871 Mon Sep 17 00:00:00 2001 From: gpbl Date: Sun, 5 May 2024 18:37:11 -0600 Subject: [PATCH] build: update tsconfig.json --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index af63a495ae..efabd43f69 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,12 +2,12 @@ "extends": "./tsconfig-base.json", "compilerOptions": { "paths": { + "@/test": ["./test"], "@/test/*": ["./test/*"] }, "noEmit": true, - "types": ["node", "jest", "@testing-library/jest-dom"], - "lib": ["dom", "dom.iterable", "esnext"] + "types": ["node", "jest", "@testing-library/jest-dom", "@types/jest"] }, "include": ["src", "test", "**/*.test.*"], - "exclude": ["website", "docs", "next", "typedoc"] + "exclude": ["website"] }