【发布时间】:2018-07-24 22:10:08
【问题描述】:
Typescript v 2.7 发布了名为 --esModuleInterop https://www.typescriptlang.org/docs/handbook/compiler-options.html 的非常简洁的标志,我试图弄清楚是否有办法将它与 tsconfig.json 一起使用,因为目前似乎没有记录:http://www.typescriptlang.org/docs/handbook/tsconfig-json.html
除非它以某种方式与module?一起工作
我想要实现的主要用例是能够导入这样的东西
import React from "react"
相对于
import * as React from "react"
如果可能的话,从我的 tsconfig 中这样做
【问题讨论】:
标签: typescript