V2EX 最热主题
02:24 · Oct 19, 2025 · Sun
V2EX-最热主题
2025 年 node 项目,乱成一锅粥的 typescript ESM import 写法该怎么选?
Telegraph
|
source
Telegraph
2025 年 node 项目,乱成一锅粥的 typescript ESM import 写法该怎么选?
BeautifulSoap: 假设在 ./utils/calcute.ts 中有一个工具函数 add() export function add(a: number, b: number): number { return a + b;} 然后我们在 main.ts 中需要使用这个 add 函数 写法 1, import 不带扩展名: tsconfig 配置 module=esnext ,然后假设有如下 main.ts 文件 import { add } from "./utils/calcute";add(1…
Home
Powered by
BroadcastChannel
&
Sepia