Initial project bootstrap

这个提交包含在:
Manus
2026-03-12 20:28:28 -04:00
当前提交 ef41bdbe86
修改 82 个文件,包含 15581 行新增0 行删除

22
tsconfig.node.json 普通文件
查看文件

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}