heritage-frontend/tsconfig.json
Leo 22712b4bfb 初始化:添加项目基础配置文件
- 添加Git配置文件(.gitignore, .gitattributes)
- 添加编辑器配置(.editorconfig)
- 添加包管理器配置(.npmrc, package.json)
- 添加依赖锁定文件(package-lock.json, pnpm-lock.yaml)
- 添加TypeScript配置(tsconfig.json)
2025-10-08 02:22:45 +08:00

26 lines
641 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["ESNext", "DOM"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"@/*": ["src/*"]
},
"resolveJsonModule": true,
"types": ["node", "vite/client", "naive-ui/volar", "unplugin-icons/types/vue"],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "dist"]
}