Igor Ribeiro

Results 15 comments of Igor Ribeiro

Thanks man. Can you include the right type? ```typescript calendar: { date: Date; day: number; isInPrimaryMonth: boolean; isInLastWeekOfPrimaryMonth: boolean; index: { day: number; week: number; }; }[][] ```

Actually, I'm going to rewrite it to TS

Now, thinking about it, the property `firstWeekday` is the first day of the month in the week. We don't need to change that. What you want to change is the...

Hello! This package is awesome, thanks! I'm running into this issue a lot, I use it with Vim, I wonder how difficult would be to list the option and ask...

Hi @otarza, I'm not using it anymore.

Yeah, I'm using nvim in an environment with node 16 and it doesn't show the error, but the import is still not working.

Updated the description to better explain the issue.

It works if I put `../../packages/**/*.tsx` on `web/tsconfig.json` for example. But then the import is `import { Button } from "../../../packages/ui";` instead of `import { Button } from 'ui'`;

Got it working... You need to add `"references": [{ "path": "../../packages/PACKAGE_NAME" }]` on `tsconfig.json` of every package that you want to use **PACKAGE_NAME**.

@fabrixiop26 I'm using the examples from here, so it's the same `tsconfig.json`.