feat: add Vite config and TypeScript settings for web build

This commit is contained in:
2026-04-27 08:24:55 +09:00
parent 57d4a9bf17
commit 7e9bc4bfdd
6 changed files with 79 additions and 9 deletions

12
tsconfig.node.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"types": ["node"]
},
"include": ["vite.config.ts"]
}