-
Hi,
currently I'm using your package in a Typescript project that I have inherited from a collegue. I really enjoy working with it, so far. What do you think about generating some Typescript declarat…
-
### Environment information
```plain text
System:
OS: macOS 15.1
CPU: (12) arm64 Apple M3 Pro
Memory: 123.80 MB / 36.00 GB
Shell: /bin/zsh
Binaries:
Node: 22.9.0 - /opt/homebrew/bi…
-
#### Bug Report Checklist
- [x] Have you provided a full/minimal spec to reproduce the issue?
- [X] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagg…
-
When turning this table:
```
CREATE TABLE IF NOT EXISTS profiles (
id uuid REFERENCES auth.users NOT NULL primary key,
full_name text,
updated_at timestamp with time zone
);
```
into a…
-
### Bug Report Checklist
- [X] I have pulled the latest `main` branch of the repository.
- [X] I have [searched for related issues](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?…
-
Would it be possible to change the type "BigInt" for integer numbers instead of using the type "number" when generating typescript code from an Ecore metamodel?
-
## React 19 demos
- [`DataGrid`](https://codesandbox.io/p/sandbox/intelligent-jerry-2jgvqy)
- [`DataGridPro`](https://codesandbox.io/p/sandbox/late-cookies-8y8j2d)
- [`DataGridPremium`](https://c…
-
Currently, empty forms are generated as `any` type.
In TypeScript, there are few situations where the `any` type is more suitable than the `unknown` type.
Both are tolerant of assignments.
`unk…
-
Use terraform cdk https://github.com/hashicorp/terraform-cdk to dynamically create infrastructure scripts. the current approach may not be scalable as it involves hcl file manipulations .
-
**TypeScript Version:** 2.2.1
**Code**
```typescript
async function example() {
// result.value will be promise
const promise = Promise.resolve("foo");
await promise;
// …