From 46ee2f0157412cc874636dbac4be9093f5b45dcc Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Fri, 6 Jan 2023 15:13:36 +0100 Subject: [PATCH] frontend: remove --tsconfig from svelte-check Signed-off-by: Sam Therapy --- frontend/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index f9fcfec..10bc10e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -7,8 +7,8 @@ "build": "vite build", "preview": "vite preview", "test": "playwright test", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "check": "svelte-kit sync && svelte-check", + "check:watch": "svelte-kit sync && svelte-check --watch", "test:unit": "vitest", "lint": "prettier --plugin-search-dir . --check . && eslint .", "format": "prettier --plugin-search-dir . --write ."