Subhajit Sahu

Results 7 comments of Subhajit Sahu

Hello @timocov does this conditionals help solve: - Put in root namespace if no name collision - Pack into a namespace otherwise - The name of namespace can be the...

@timocov Please check the examples taken from above. ### Example 1 > #134 as given by @RunDevelopment Original input: ```ts // bar.ts export type B = number; // index.ts export...

I need this too for our shared Volta GPU server.

It seems i was able to setup a shared queue with $TS_SOCKET, as mentioned in TRICKS. Thanks for making task-spooler.

@justanhduc While trying it out yesterday i saw -K deletes the socket file. Again had to chmod it. It shouldnt be a problem, but now i put a message about...

Hello @timocov I don't see any limitation in the given example. I currently use re-exports as follows: ```typescript /// number.ts export function constrain(x: number, min: number, max: number): number; ......

@timocov It seems i forgot to use `--external-inlines`. `number.ts` was in another package. It works.