目的
.vueのインポートでCannot find module or its corresponding type declarations.
になるので回避したいです。
@エイリアスを疑う
@エイリアスの問題ではないです。
tsconfigでは正しく設定されていました。
tsconfig
{
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},}
shims-vue.d.tsを宣言
shimsとは
特定の非標準のコンテンツやモジュールに対して型情報を"埋める"役割を果たします。
こちらより、以下の型定義ファイルを宣言することで解決しました。
Cannot import from a typescript Vue component into another typescript Vue component
shims-vue.d.ts
declare module "*.vue" {
import Vue from "vue";
export default Vue;
}