get an error when imort a file with lang = "ts"
in vue file.
<script lang="ts">
import { * } from '~/*/*'
Cannot find module '~/*/*.vue' or its corresponding type declarations.Vetur(2307)
import { * } from '../*/*'
import { * } from 'src/*/*'
OR
"paths": {
"~/*": [
"src/*"
],
"@/*": [
"src/*"
]
import { * } from '@/*/*'
import { * } from '~/*/*'