我在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');