Colin Skow

Results 19 comments of Colin Skow

The default should remain unchanged `tsconfig.json` (otherwise we risk breaking lots of builds.) However I would also like loader options to support the following scenarios:' 1) Load entry files only...

Some background on my use case: I have an Electron project with separate builds for main and renderer processes, as well as e2e tests and unit tests in TypeScript. They...

@johnnyreilly TypeScript has implemented this behavior, but you have to specifically specify the entry files in the `files` array in your `tsconfig.json`. What I am asking for is the ability...

@johnnyreilly you can test that out for yourself. Specify one entry file in the `files` array in your `tsconfig.json` and it will compile everything in the dependency tree, but will...

@johnnyreilly again, you can test for yourself but in my experience it does allow for distinct entry points. TypeScript should parse all files in the `files` array along with their...

@oocx that could work if it weren't for lazy loaded modules. In order to get lazy loaded modules to work they need to be added manually to the resolution graph.

Thanks. I'm working on a CRM app and I want customers to be able to scroll through potentially several thousand records without lag. PouchDB automatically syncs my data to the...

I tried running the default pendulum trainer. When I turn `use_gpu` on, it freezes during step 0 with no error. It runs fine otherwise. TF runs fine with my GPU...

You've got a couple options: 1) Manually put each document that is added to the live query and delete if it is removed. You can specify the `_rev` field and...

If you've added 11 listeners and the warning says 11 listeners added, that is normal. (Increase max listeners if you need more.) If you add 11 listeners and it says...