From fa48c95dc510719104407edf9536022bf2e300c8 Mon Sep 17 00:00:00 2001 From: iliya Date: Fri, 27 Feb 2026 21:12:08 +0200 Subject: [PATCH] refactor: merge tsconfig.test.json into tsconfig.json --- eslint.config.js | 2 +- tsconfig.json | 4 ++-- tsconfig.test.json | 7 ------- 3 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 tsconfig.test.json diff --git a/eslint.config.js b/eslint.config.js index d5938fba..ed969c71 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -338,7 +338,7 @@ export default defineConfig([ }, parserOptions: { projectService: false, - project: './tsconfig.test.json', + project: './tsconfig.json', }, }, rules: { diff --git a/tsconfig.json b/tsconfig.json index 60884143..7711a5ed 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,8 +18,8 @@ "@preload/*": ["./src/preload/*"], "@shared/*": ["./src/shared/*"] }, - "types": ["node"] + "types": ["node", "vitest/globals"] }, - "include": ["src/**/*"], + "include": ["src/**/*", "test/**/*"], "exclude": ["node_modules", "dist", "dist-electron"] } diff --git a/tsconfig.test.json b/tsconfig.test.json deleted file mode 100644 index 5576680c..00000000 --- a/tsconfig.test.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "types": ["node", "vitest/globals"] - }, - "include": ["test/**/*", "src/**/*"] -}