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"] }