another `crd2pulumi` question! seems to be a popu...
# kubernetes
i
another
crd2pulumi
question! seems to be a popular tool 🙂 when generating for node, can we get the full specifiers written? e.g. instead of:
Copy code
export { ProviderArgs } from "./provider";
import * as cert_manager from "./cert_manager";
it would be:
Copy code
export { ProviderArgs } from "./provider.js";
import * as cert_manager from "./cert_manager/index.js";
m
Worth filling an issue about it! crd2pulumi leverages the same code generation that we use for our provider SDKs so it might be a couple steps needed to support it, but it would be good to at least track the need! (And it will give others a place to find your helpful workaround!)