From 74cc692302785c9069384a297080c231e0b09e38 Mon Sep 17 00:00:00 2001 From: Ry Racherbaumer Date: Mon, 26 Feb 2024 17:32:42 -0600 Subject: [PATCH] chore: add skipLibCheck to tsconfig --- tsconfig.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5cb2466d1..110a2c9b7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,16 @@ { "compilerOptions": { - "target": "es2021", - "lib": ["dom"], - "sourceMap": true, - "noEmit": true, "downlevelIteration": true, - "strict": true, - "moduleResolution": "bundler", - "resolveJsonModule": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, + "lib": ["dom"], + "moduleResolution": "bundler", + "noEmit": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "target": "es2021", "types": ["vitest/globals"] }, "include": ["src/**/*", "bench/**/*", "build/**/*", "test/**/*"]