Michael Russell

Results 73 comments of Michael Russell

Issue is a bit old but FWIW, lots of packages are shipping with definition files these days; The ones that don't can, usually, be found here http://definitelytyped.org/. Example: `npm i...

Depending on how it's integrated TS 2.x+ will automatically look in node_modules for types, so theoretically you'd just need to expose a way to npm install the packages/types from CK....

Babel is turning all top level `this` to `undefined`. To prevent this: `babel --blacklist strict the-script-thats-not-a-module.js` Source: https://github.com/babel/babel.github.io/blob/862b43db93e48762671267034a50c30c00e433e2/docs/faq.md#why-is-this-being-remapped-to-undefined

Oh sorry, that was more of a note for @bdkjones. Only way you could do this would be bypassing CK's config completely.

I don't think it does, this is an older ticket, but any newer ones with similar requests pointed back to it https://github.com/babel/babel/issues/670

You could also setup a Hook/Build process that runs https://www.npmjs.com/package/ng-annotate then push that output file through Uglify.

@jitinl [I've made a post](http://useless.today/codekit-babel/) on using CodeKit's hooks to transpile babeljs files, not sure if it'll be much/any faster than your current workaround, but this post does explain at...

@nextriot have you setup CK to be a proxy for the apache server?

The bundling is much better now. There's no need to compile a list of files as it will pull in the files needed based on dependencies. `tsc --module system|amd --outFile...