fenghe-auction/tsconfig.json

12 lines
278 B
JSON
Raw Permalink Normal View History

2025-04-10 07:47:40 +00:00
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["app/*"] // 确保这里的路径别名配置和你的项目配置一致
}
},
"include": ["app/**/*"]
}