From 616ff20fc54a811005d387f9ed2a799b52ff78f8 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Mon, 22 Jan 2024 11:23:09 -0800 Subject: [PATCH] Fix lint error --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7002ff8..b7bf68c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,7 @@ "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", - "paths": { "@/*": ["./src/*"], "test-utils": ["./test-utils"] } + "paths": { "@/*": ["./src/*"], "test-utils": ["./test-utils"] }, }, - "include": ["src/**/*", "vite.config.ts", "jest.config.ts"] + "include": ["src/**/*", "vite.config.ts", "jest.config.ts"], }