David Feng
David Feng
Been trying to get this working by spinning up a `node` process with the `--inspect-brk` flag. ``` Debugger listening on ws://127.0.0.1:9229/133fb593-50c7-4e71-b9fb-7269906ca972 For help, see: https://nodejs.org/en/docs/inspector ``` I noticed that when...
# Issue Relevent: https://github.com/sequelize/sequelize/issues/8019 I have defined the following model using sequelize-typescript ```typescript // model.ts interface IFooAttributes { id: string; bar: number; createdAt: Date; } type TFooCreationAttributes = Optional; @Table({...
Is there plans to support [typesciprt 5.0 decorators](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators)? Should we plan to use `experimentalDecorators` for the foreseeable future?