Typescript 1.0 RequireJS Plugin -


i'm looking requirejs plugin supports loading typescript 1.0 code.

i found https://github.com/iammerrick/require-ts, seems work older version of typescript , has not been updated in long time.

please don't. run js in browser. reason:

import dep = require('./something');

is easier + more typesafe than:

define(['ts!./something'], function(dep) {   // dep compiled js @ point. }); 

perhaps unaware of typescript external modules.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -