0👍
This is the way that I declare paths
in my jsconfig.json
and it works for me:
"compilerOptions": {
"paths": {
"~/*": ["./*"],
"@/*": ["./*"],
"~~/*": ["./*"],
"@@/*": ["./*"]
}
},
For more information you can check Nuxt TypeScript
Source:stackexchange.com