From a51dec0bab03eb1aa3811cf8646304cfcd07dcf2 Mon Sep 17 00:00:00 2001 From: Hiroki Osame Date: Thu, 16 Feb 2023 16:57:58 +0900 Subject: [PATCH] chore: update tsconfig to remove build config --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index f4167ec..f7f2705 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "outDir": "dist", + "noEmit": true, "target": "ES2020", "module": "Node16", "strict": true, @@ -9,5 +9,4 @@ "esModuleInterop": true, "skipLibCheck": true }, - "include": ["src"] }