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
Post a Comment