From 60b06d403f25a50626d98d5eb4221fe376ff295f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9ss=20Martins?= <81935519+Jessmartins91@users.noreply.github.com> Date: Thu, 9 May 2024 10:56:50 -0300 Subject: [PATCH] fix: noemit inside tsconfig --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 542afa5..34cc06f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,10 +17,11 @@ "emitDeclarationOnly": true, "paths": { "@/*": ["./src/*"] - } + }, + "noEmit": true, }, "exclude": [ - "dist", + "dist", "node_modules", "src/**/*.test.tsx", "src/**/*.stories.tsx"