From ae6705e49c3d0acbd4a575eb2c313c03cca39196 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Wed, 18 Oct 2023 00:38:16 -0700 Subject: [PATCH] chore: clean up type checking on dashboard --- packages/dashboard/tsconfig.json | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/packages/dashboard/tsconfig.json b/packages/dashboard/tsconfig.json index 13901910..6c72a050 100644 --- a/packages/dashboard/tsconfig.json +++ b/packages/dashboard/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "./.svelte-kit/tsconfig.json", "compilerOptions": { - "baseUrl": "", "allowJs": true, "checkJs": true, "preserveValueImports": false, @@ -12,17 +11,8 @@ "resolveJsonModule": true, "skipLibCheck": true, "sourceMap": true, - "strict": true, - "paths": { - "$util/*": ["./src/util/*"], - "$components/*": ["./src/components/*"], - "$src/*": ["./src/*"] - }, - "types": ["./src/global.d.ts"] - }, - "include": ["src/*"], - "exclude": ["node_modules", "**/node_modules/*"] - + "strict": true + } // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias // // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes