From 49178acc249cc34a344b762773ae92c2397761d3 Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Tue, 14 Apr 2026 09:21:20 -0400 Subject: [PATCH] Add frontend/tsconfig.node.json --- frontend/tsconfig.node.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/tsconfig.node.json diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json new file mode 100644 index 0000000..42872c5 --- /dev/null +++ b/frontend/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +}