是否可以使用模块路径而不必使用带有.d.ts文件的参考路径..
例如,如果我在requirejs配置文件中有这个:
require.config(
{
paths: {
test : "/test/test1/TestFile"
}
}
);
我想用: import TestFile = require(' test')
而不是必须使用: import TestFile = require(' / test / test1 / TestFile')
答案 0 :(得分:1)
我想使用:import TestFile = require(' test') 而不必使用:import TestFile = require(' / test / test1 / TestFile')
目前不是。您需要具有完整的相对路径或使用模块声明。
仅供参考:grunt-ts
可为您生成这些长相对路径https://github.com/grunt-ts/grunt-ts/issues/85