From e3978029af389241477a08659778ff68774661bf Mon Sep 17 00:00:00 2001 From: Sebastian Krupinski Date: Sun, 22 Feb 2026 16:44:32 -0500 Subject: [PATCH] chore: standardize tsconfig Signed-off-by: Sebastian Krupinski --- tsconfig.node.json | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/tsconfig.node.json b/tsconfig.node.json index f094063..953116c 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -1,19 +1,21 @@ { - "extends": "@tsconfig/node20/tsconfig.json", - "include": [ - "vite.config.*", - "vitest.config.*", - "cypress.config.*", - "nightwatch.conf.*", - "playwright.config.*" - ], "compilerOptions": { - "composite": true, - "noEmit": true, "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", - + "target": "ES2023", + "lib": ["ES2023"], "module": "ESNext", - "moduleResolution": "Bundler", - "types": ["node"] - } + "skipLibCheck": true, + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] } -- 2.39.5