Sam Grönblom
Sam Grönblom
Redid this pull request with an included test case and verified all test cases still pass.
I noticed that URL generation has been added as an issue like 2 years ago and there's even an orphaned pull request for it. The pull request seems to be...
Handlebars supports a second `options` parameter for compiling that affects the compiled template. Based on a quick look through https://github.com/pillarjs/hbs/blob/master/lib/hbs.js it seems hbs has no way to provide options for...
The handbook contains some decent attempts at explaining how one can write a .d.ts file for an already existing npm package. However it is quite common to find that some...
There is 0 mention of references in the tsconfig.json section: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html I know that there is this other https://www.typescriptlang.org/docs/handbook/project-references.html specifically detailing project references, but it would be nice to have...
This seems like it could have been a quite useful project but also seems no new human-made commits since 2018. So I assume the project is no longer active?
For example I wrote a mock like this ``` // sendRegistrationCompleEmail is a function that takes some options and returns its result as a promise const emailMock = TypeMoq.Mock.ofInstance(sendRegistrationCompleteEmail) emailMock.setup(m...
I wanted to monitor files inside a nested directory. Let's say src/app/entities/*.ts. I tried using something like: ``` const hashResult = await folderHash.hashElement(projectDir, { folders: { include: [ 'src/app/entities', ],...
For some reason I am getting duplicate items for at least the following two things: - autocompletion (see the attached image) - error messages when hovering (I wasn't able to...
**Is your feature request related to a problem? Please describe.** We are looking for a decent SQL formatter that we could use to format all our SQL files. SQLTools seems...