|
You are here |
evanhahn.com | ||
| | | | |
dmitripavlutin.com
|
|
| | | | | Index signatures in TypeScript let's you annotate objects of unknown structure. | |
| | | | |
blog.scottnonnenberg.com
|
|
| | | | | So you're a Javascript developer, and you want to stop writing Javascript. Typescript seems like a good option, but you've always used dynamically-typed languages. You're uncertain about jumping in... | |
| | | | |
www.typescriptlang.org
|
|
| | | | | ||
| | | | |
www.2ality.com
|
|
| | | Rich Harris' module bundler Rollup popularized an important feature in the JavaScript world: tree-shaking, excluding unused exports from bundles. Rollup depends on the static structure of ES6 modules (imports and exports can't be changed at runtime) to detect which exports are unused. Tree-shaking for webpack is currently in beta. This blog post explains how it works. The project we are going to examine is on GitHub: tree-shaking-demo | ||