-
Hardhat is using [isolatedModules](https://www.typescriptlang.org/tsconfig/#isolatedModules) to ensure compatibility with single-file transpilation tools like tsx. With isolatedModules, const enums ca…
-
### Description
I have the following config:
```
types: {
export: true,
enums: false
}
```
And I'm using zod-openapi to define my DTO:
Which in turn gives me the cor…
Stono updated
2 weeks ago
-
[P3070R0](https://wg21.link/p3070r0) Formatting enums (Victor Zverovich)
-
This should make it easier to modify generated code when relooper needed to run.
-
Is there any plan to add locale keys to enums and entry fields, such as those found in settings UI?
![Image](https://github.com/user-attachments/assets/3d0d7011-7fce-46fb-be97-ea9db2c3e522)
Support f…
-
### Background
In OCSF, there are a few standard conventions for enums. Typically:
* There are two attributes that define an enum, one suffixed with `_id` that takes on an integer value, and on…
-
**Description**
Hi, when using the `--enum` flag, the same enum gets generated multiple times if it's used multiple times, can we get a new flag or something to not generate duplicate enums when the …
-
### Bug description
Currently, enums included in the Prisma schema are compiled to TypeScript enums in the the Prisma client:
``` typescript
// schema.prisma
enum Status {
ACTIVE
INACTIV…
-
Hi! I have a use-case where I want to use enumer to map postgres enums with the `-sql` flag. There may be conflicts in my enums, hence I cannot declare multiple enums in the same package.
Example:
…
-
I created an enum in Postgres using `create type "Schema"."ClaimTypeEnum" as enum ('Institutional', 'Professional')`
and referenced it in Kysely with `sql.id('Schema', 'ClaimTypeEnum')`
but when…