Ashal Farhan

Results 7 comments of Ashal Farhan

facing the same issue here, any idea?

Hi @kingjan1999. I've installed the `4.7.0-beta` and it works. Thanks!

thanks @BrianLeishman I've tried your solution, and this works perfect for me ```go type LoginUserDto struct { Email string `json:"email,omitempty" validate:"excluded_with=username,email"` Username string `json:"username,omitempty" validate:"excluded_with=email"` Password string `json:"password" validate:"required"` }...

> @ashalfarhan this doesn't work for struct I've opened #906 I've tried this way actually ```go type LoginUserFields struct { Email string `json:"email" validate:"required_without=Username,omitempty,email"` Username string `json:"username" validate:"required_without=Email,omitempty"` Password string...

Hi @rtkg12 , is there anyone working with these issue ?, i've been trying to refactor some component to typescript, can i open a PR for this issue?

I'm facing the same issue, aliasing the module to point to the `dist` directory works fine for me: ```ts import { defineConfig } from 'vite'; export default defineConfig({ resolve: {...

I'm facing the same issue, this workaround works fine for me: ```ts import { defineConfig } from 'vite'; export default defineConfig({ resolve: { alias: { validatorjs: 'validatorjs/dist/validator.js', }, }, });...