From ad28d69d279ab31416327f9c4fa5ebcaf83fc2b4 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Wed, 1 Mar 2023 12:09:37 -0800 Subject: [PATCH] update ts config to ignore js files --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b022d603..25bddc0e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -24,5 +24,5 @@ "jsx": "preserve" }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules", "**/*.js", "**/*.jsx"] }