From 21a0d03f5143155b81a349e70c3a42f05039c00d Mon Sep 17 00:00:00 2001 From: Joost Date: Sun, 19 Nov 2023 10:33:48 +0100 Subject: [PATCH] add rootdir --- tsconfig.json | 1 + tsconfig.node.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 10411a9..b28afb5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "module": "CommonJS", "target": "ES2022", + "rootDir": ".", }, "references": [ { diff --git a/tsconfig.node.json b/tsconfig.node.json index 504236c..af44b00 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -10,9 +10,9 @@ "include": [ "vite.config.ts", "package.json", - "src/main/*.ts", - "src/shared/*", - "src/preload/*", + "src/main/**/*", + "src/shared/**/*", + "src/preload/**/*", ], "exclude": [ "node_modules"