From 399e4efdada756269c69ae2960136c80c3aee33e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 4 Feb 2026 06:46:30 +0100 Subject: [PATCH] Add tsconfig.node.json --- tsconfig.node.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tsconfig.node.json diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..42872c5 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +}