I’m working on getting my dev environment ready to start working on a custom block. However, I’m running into an error.
After running block run
in Terminal and allowing my browser to load https://localhost:9000, opening the block in Airtable yields:
/usr/local/lib/node_modules/@airtable/blocks-cli/transpiled/src/builder/node_modules/yaml/index.d.ts: Namespace not marked type-only declare. Non-declarative namespaces are only supported experimentally in Babel. To enable and review caveats see: https://babeljs.io/docs/en/babel-plugin-transform-typescript
107 | str: scalarOptions.Str
108 | }
> 109 | export namespace scalarOptions {
| ^^^^^^^^^^^^^
110 | interface Binary {
111 | /**
112 | * The type of string literal used to stringify `!!binary` values.
Any ideas as to how to start troubleshooting this? Admittedly, I work more with Python and this is my first dive into Node development.