From 74fc200e3c1580526990906c3ca02e669f934221 Mon Sep 17 00:00:00 2001 From: Weronika Olejniczak Date: Wed, 22 May 2024 22:11:34 +0200 Subject: [PATCH] chore: noEmit declaration files in TS --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index d1bac5c3..e854e8e1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,5 @@ { + "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "declaration": true, "esModuleInterop": true, @@ -9,6 +10,7 @@ "skipLibCheck": true, "sourceMap": true, "strict": true, + "noEmit": true, "typeRoots": ["../../node_modules/@types"] }, "exclude": ["node_modules"]