nathanreyes / v-calendar

An elegant calendar and datepicker plugin for Vue.
https://vcalendar.io
MIT License
4.32k stars 841 forks source link

V3 - Fixed build error in src\utils\theme.ts #1404

Open alfisdad opened 8 months ago

alfisdad commented 8 months ago

Building a project with v-calendar v3.1.0 as a dependency caused the following error: node_modules/v-calendar/dist/types/src/utils/theme.d.ts:1:36 - error TS2307: Cannot find module '@/utils/date/range' or its corresponding type declarations.

1 import type { DateRangeCell } from '@/utils/date/range';



Found 1 error in node_modules/v-calendar/dist/types/src/utils/theme.d.ts:1

The issue was the "@" at the beginning of the path. Changed to ".." and it builds.