Relative paths in ionic 6 apps

Viewed 233

paths definition in tsconfig.json file.

"baseUrl": ".",
  "paths": {
    "@assets*": ["src/assets*"],
    "@components*": ["src/components*"],
    "@pages*": ["src/pages*"],
    "@theme*": ["src/theme*"],
    "@methods*": ["src/methods*"],
    "@interfaces*": ["src/interfaces*"],
    "@mock_data*": ["src/mock_data*"]
},

Error: Can't resolve '@components/MainTabs/MainTabs'

I think ionic 6 uses vite, so I don't know where to add the config

1 Answers

Please try the below

      "@components/*": [
        "src/components/*"
      ],
Related