diff --git a/docs/new/typescript-3.8.md b/docs/new/typescript-3.8.md index 9ffe6f87..359f1cf9 100644 --- a/docs/new/typescript-3.8.md +++ b/docs/new/typescript-3.8.md @@ -51,7 +51,7 @@ function doThingBetter(options) { 首先,在一些场景下,TypeScript 会混淆导出的究竟是一个类型还是一个值。比如在下面的例子中, `MyThing` 究竟是一个值还是一个类型? ```ts -import { MyThing } from './some-module.js'; +import { MyThing } from './some-module'; export { MyThing }; ```