From 766996711f4694fc567f3f876bfe1c6979303c57 Mon Sep 17 00:00:00 2001 From: snowgitea Date: Wed, 29 Apr 2026 10:53:46 +0800 Subject: [PATCH] chore: add frontend/tsconfig.node.json --- frontend/tsconfig.node.json | 12 ++++++++++++ 1 file changed, 12 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..28a6644 --- /dev/null +++ b/frontend/tsconfig.node.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "strict": true, + "noEmit": false + }, + "include": ["vite.config.ts"] +}