Steve Ognibene
Steve Ognibene
Hi - thanks for the feedback. A significant limitation of grunt-ts (and any other `tsc` automation tool) is that it can't control how `tsc` itself works. When compiling internal modules,...
Here's the problem I see with sending one file: **a.ts** ``` typescript class MyClass { public myProperty = ""; } ``` **b.ts** ``` typescript /// var x = new MyClass();...
@basarat Did we ever reach out to the Chokidar folks? They seem pretty responsive and are putting out new releases very frequently. I wonder if we could get a minimalist...
Well that's better...
@basarat Now that you're more familiar with the TypeScript language services, do you think a good goal would be to implement the watch functionality that way and deprecate the current...
Excellent - thanks for the report.
For what it's worth, several editors I use will slightly gray out variables that aren't used rather than marking them in red; I like this as it is a subtle...
Hi all - still very excited for this feature. Every time I make a repo I regret not having it. Thanks @thenewpotato for your PR.
Just saw that this was on GitHub. You may be able to take advantage of this with just a few changes: https://github.com/nycdotnet/TSqlFlex/blob/master/Code/TSqlFlex.Core/XmlSpreadsheetRenderer.cs The XML Spreadsheet schema is very easy to...
Also attempting to get this working with SpaceTraders. I dug into this a bit. In `src\NSwag.CodeGeneration.CSharp\CSharpGeneratorBaseSettings.cs` I added a new string property `GlobalSystemNamespaceAlias` defaulting to "System". I also had to...