From 75739bf8c00713e8097e9db7fac88e9465d4429c Mon Sep 17 00:00:00 2001 From: Cohan Carpentier Date: Tue, 23 Apr 2024 09:46:40 -0400 Subject: [PATCH] fix: add noimplicitoverride to tsconfig --- biome.jsonc | 4 ++-- package.json | 10 +++++----- tsconfig.base.json | 1 + 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index 79490de..2b76e37 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.6.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.7.1/schema.json", "files": { "ignore": [".next", ".vercel", "*.spec.*", "*.test.*", "build", "dist", "node_modules"], "ignoreUnknown": true @@ -17,6 +17,7 @@ "useHookAtTopLevel": "error" }, "complexity": { + "noUselessTernary": "warn", "noUselessLoneBlockStatements": "warn" }, "suspicious": { @@ -39,7 +40,6 @@ "useNumberNamespace": "error" }, "nursery": { - "noUselessTernary": "warn", "useSortedClasses": "warn" } } diff --git a/package.json b/package.json index 849d53a..e3aa17e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@risc0/ui", - "version": "0.0.50", + "version": "0.0.51", "sideEffects": false, "type": "module", "scripts": { @@ -31,14 +31,14 @@ "@types/lodash-es": "4.17.12", "autoprefixer": "10.4.19", "class-variance-authority": "0.7.0", - "clsx": "2.1.0", + "clsx": "2.1.1", "cmdk": "0.2.0", "lodash-es": "4.17.21", - "lucide-react": "0.368.0", + "lucide-react": "0.372.0", "next-themes": "0.3.0", "react-hook-form": "7.51.3", "sonner": "1.4.41", - "tailwind-merge": "2.2.2", + "tailwind-merge": "2.3.0", "tailwindcss": "3.4.3", "tailwindcss-animate": "1.0.7", "typescript": "5.4.5" @@ -49,4 +49,4 @@ "react": "^18", "react-dom": "^18" } -} \ No newline at end of file +} diff --git a/tsconfig.base.json b/tsconfig.base.json index 3afe7bf..67ea9e5 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -15,6 +15,7 @@ "noUncheckedIndexedAccess": true, "verbatimModuleSyntax": true, "noImplicitAny": false, + "noImplicitOverride": true, /* Bundled projects */ "incremental": true,