From 427124d2e270d51401e98a8ab24f52254abac285 Mon Sep 17 00:00:00 2001 From: Wooyeol Lee Date: Fri, 22 Nov 2024 23:49:02 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Eslint=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=EC=97=90=EC=84=9C=20dist=20ignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eslint.config.js | 1 + tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 75a8a5f..aec7d89 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -7,6 +7,7 @@ export default [ '.yarn', 'postcss.config.js', 'tailwind.config.js', + 'dist/**', ], }, ...react({ diff --git a/tsconfig.json b/tsconfig.json index c8e93c0..c1eb360 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,5 +21,6 @@ "@/*": ["./src/*"] } }, - "include": ["src", "vite.config.ts"] + "include": ["src", "vite.config.ts"], + "exclude": ["dist/**"] }