Absolute Imports and Module path aliasesに記載してありました。
// tsconfig.json or jsconfig.json { "compilerOptions": { "baseUrl": ".", "paths": { "@/components/*": ["components/*"] } } }
import Pagination from '@/components/pagination'
devサーバの再起動しないと、jsconfig.json
が読み込まれないようです。
{ "compilerOptions": { "baseUrl": ".", "paths": { "@/components/*": ["components/*"], "@/lib/*": ["lib/*"], "@/styles/*": ["styles/*"] } }, }