Files
ele-HeiXiu/tsconfig.node.json
YoungestSongMo e0d91335c7 chore: 补充遗漏提交 — 日志分类/导航配置/依赖声明/路径别名
- shared/types/logging.ts: 新增 canvas + canvas-window 日志分类
- nav-config.ts: 移除合规素材库导航项 (合规素材库页面待后续实现)
- package.json + lock: 补充 zustand 依赖声明
- tsconfig.node.json: 补充 @shared/* 路径别名 (主进程导入)
- .gitignore: 排除 infinite_canvas_140 目录

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-24 20:08:28 +08:00

17 lines
422 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": true,
"esModuleInterop": true,
"module": "esnext",
"target": "es2024",
"moduleResolution": "bundler",
"skipLibCheck": true,
"strict": true,
"types": ["node"],
"paths": {
"@shared/*": ["./shared/*"]
}
},
"include": ["vite.config.ts", "electron/**/*.ts", "shared"]
}