在编译打字稿后添加前缀以导入URL

时间:2016-04-28 15:57:12

标签: typescript angular

我有一个angular2 app,我用打字稿写的。

我想知道是否有可能让打字稿编译器为所有导入的网址添加前缀(和后缀)?

E.g。我得到了以下代码:

import {AppComponent} from 'app.component';

在javascript中编译成这样的东西:

System.register(['./test/app.component'], ...

但我想要的是:

System.register(['<some_path>/test/app.component.js'], ...

where&#34; some_path&#34;可以是例如&#34;组分/ my_app应用/&#34 ;.

0 个答案:

没有答案