iislucas
iislucas
referenced source files, outside of the baseDir, cause a (silent!) change to the compiled file paths
When some referenced source lives outside of the baseDir, e.g. when compiling (with `baseDir: 'src'` and `outDir: 'build'`): ``` src/d1/foo.ts src/d2/d2a/foo.ts src/d2/d2b/foo.ts ``` and `src/d1/foo.ts` contains a require (or reference?)...
Would be great for grunt-ts to have a way to check a declaration file has the same structure as a generated .d.ts file to make sure that the declaration file...
In: https://github.com/grpc/grpc.github.io/blob/master/docs/tutorials/basic/node.md The links to example code seems to be broken: https://github.com/grpc/grpc.github.io/blob/master/docs/tutorials/basic/node.md#defining-the-service and https://github.com/grpc/grpc.github.io/blob/master/docs/tutorials/basic/node.md#creating-the-server and https://github.com/grpc/grpc.github.io/blob/master/docs/tutorials/basic/node.md#creating-the-client
The package.json file specified exact angular versions, but angular uses semantic versioning. This means that attempting to update angular breaks on projects that include the authorship npm package as a...
Sometimes an app that includes a `convai-checker` component wants to clear the text. If it does this by setting the text value to be empty, `convai-checker` doesn't know about it....
With default setup, entering: "bonjour mon ami" Results in "Error scoring text. Please try again." it should instead say that it only works in english. We should also provide the...
It seems there is a secret and tricky requirement to use this that a variable 'global' is globally defined, and assigned to window. ``` (window as any).global = window; ```...
Comments sometimes start with wiki-markup indents (':'s in the beginning of the line). Consider interpreting these; removing them in the comment plain text transformation; or even having a full wiki-markup...
I think there's a bunch of old unused stuff that I'd like to remove and some directory structure I'd like to improve on too: Cleanup by removing: * Root level...
Using Token offsets makes us sensitive to the tokenization algorithm. Better instead to use character offsets if that's reasonable to do.