Cole Abbeduto
Cole Abbeduto
So any plans to make this standard and to update the default Display impl to include the full path when missing fields?
Would love to see a list of remote branches to be able to easily select in the dropdown like Webstorm has 🙏
After investigating build scripts, adding a quick `build.rs` with a rerun-if-changed was a good temp fix for us. ```rust fn main() { println!("cargo:rerun-if-changed=../sql"); } ``` But still not sure why...
@Andarist Would this fix this issue too? ```TypeScript // TYPE NARROWING CORRECTLY const key = 'data'; if (key in obj) { const v = obj[key]; } else { const v...