acrazing

Results 16 comments of acrazing

Could you check the version of your `dpdm`? It's fine in my world (with version `3.8.0`): ```bash ➜ react git:(main) dpdm 'src/**' -T --exit-code circular:1 --tree false --warning false ✔...

It sounds good, I will add this feature in my spare time.

You can write decorators in another form: ```ts import { __decorate } from 'tslib' import { version } from 'mobx-sync' class FooStore { foo: string } __decorate([version(1)], FooStore.prototype, 'foo', void...

要直接转es5/3的话, ts比babel实用多了

The `context` option is only used to shorten the path, not to specify the current working directory. It requires an additional option to configure to implement this feature.

Maybe use new keywords is better. For example: In TypeScript: ```ts class Foo { static base() { return 'FOO' } static foo() { return self.base() } static bar() { return...

Is there any update about this issue? I meet this again with message: ```proto syntax = "proto3"; package user; import "github.com/envoyproxy/protoc-gen-validate/validate/validate.proto"; enum UserSourceKind { UserSourceInvalid = 0; Username = 1;...