From 0c31f60bb0ea7ec32ea0b9d8dac0b2c4ed8d2fc8 Mon Sep 17 00:00:00 2001 From: Danazumi <86608142+Danazumi@users.noreply.github.com> Date: Wed, 3 May 2023 15:47:49 +0100 Subject: [PATCH] fix(next-template): strict type check Co-authored-by: Danazumi Co-authored-by: shadcn --- templates/next-template/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/next-template/tsconfig.json b/templates/next-template/tsconfig.json index 6ef0f745c0..1b03bc259f 100644 --- a/templates/next-template/tsconfig.json +++ b/templates/next-template/tsconfig.json @@ -3,7 +3,7 @@ "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, - "strict": false, + "strict": true, "forceConsistentCasingInFileNames": true, "noEmit": true, "incremental": true,