fix: resolve tsconfig parsing issues (#88)

This commit is contained in:
2025-07-14 20:57:43 +03:00
committed by GitHub
parent c1bbce8b54
commit eb99c59225
6 changed files with 37 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
{
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
@@ -8,12 +7,17 @@
"playwright.config.*"
],
"compilerOptions": {
"target": "ES2022",
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Bundler",
"composite": true,
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"lib": ["es2023"],
"module": "ESNext",
"moduleResolution": "Bundler",
"types": [
"node"
]