12 lines
278 B
JSON
12 lines
278 B
JSON
{
|
|
// https://nuxt.com/docs/guide/concepts/typescript
|
|
"extends": "./.nuxt/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["app/*"] // 确保这里的路径别名配置和你的项目配置一致
|
|
}
|
|
},
|
|
"include": ["app/**/*"]
|
|
}
|