Gil Amran

Results 46 comments of Gil Amran

Meanwhile I've created my own FAST starter kit :-) based on webpack. [https://github.com/gilamran/fullstack-typescript](https://github.com/gilamran/fullstack-typescript)

Why would you want to split the `package.json`? the `tsconfig.json` is the section "borders". You can define `types: []` in each `tsconfig.json` according to your needs.

You will have to update the `types` with or without splitting to several `package.json` If you insist, you should probably try a mono repo. approach with `lerna`

1. I'm using the main network, the latest blocknumber is 2. `geth --syncmode "light" --datadir="c:\ethereum\main" --nousb --rpc console` 3. 1.7.3-stable 4. Windows 10 5. ``` const rpc = require('ethrpc'); const...

You can't start a new process till the existing one exited, might get for example "address already in use" when restarting a server. so we must wait for the kill...

I've taken a bite on this, let me know what you think: https://github.com/gilamran/tsc-watch/commit/53f8dad497f8b2b1937388ad8de3044f4e92d72d This was not published to the v6 branch (yet)

Please do, I would love to make it more clear.

@david-alexander I looked at your implementation and it was very complicated in my opinion, it was hard to get my head around it. I've implemented a simple solution that uses...