1. ホーム
  2. vue

vueの@のエイリアスがジャンプを認識しない

2022-02-16 08:22:27
<パス

問題の説明。
ctrl+左クリックジャンプでディレクトリを開けない
解決方法
の場合、一般的に ルートディレクトリ の下に jsconfig.json ファイルに、以下の設定を追加します。

{
    "compilerOptions": {
        "baseUrl": ". ",
        "paths": {
            "@/*": ["src/*"]
        },
        "target": "ES6",
        "allowSyntheticDefaultImports": true
    },
    "include": ["src/*/*"],
    "exclude": ["node_modules"]
}