打字稿路径在commonjs(require)中有效,但不能通过使用es6(import)工作

时间:2019-06-25 06:36:54

标签: typescript path

我在tsconfig文件中配置了路径,当我使用commonjs(require)时它可以正常工作,但是使用es6(import)时它不起作用。

当我使用import时,ts-lint给我一些反馈,例如“找不到模块'mulThemeConf'.ts(2307)”

"paths": {
    "mulThemeConf":["/biz/web/page/BroccoliAndCo/mulThemeConf/index.ts"]
    },
//it doesn't work
    import * as themeConf from 'mulThemeConf';
//it work correctly
    var themeConf = require('mulThemeConf');

0 个答案:

没有答案