liveh5-nuxt/tsconfig.json

12 lines
278 B
JSON
Raw Normal View History

2025-01-08 05:26:12 +00:00
{
// https://nuxt.com/docs/guide/concepts/typescript
2025-03-11 03:54:51 +00:00
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["app/*"] // 确保这里的路径别名配置和你的项目配置一致
}
},
"include": ["app/**/*"]
2025-01-08 05:26:12 +00:00
}