我正在使用 typescript transpiler 构建 index.js,它生成包含原始 typescript 文件的 index.js.map。
我现在想压缩该文件并将原始源代码保留在 index.js.map 文件中,这样我就可以逐步完成打字稿代码而不是转译代码。
我正在运行的脚本:
terser index.js --source-map \"url='./index.js.map',includeSources\" -o index.js -c
将 index.js 替换为压缩版本,并将 index.js.map 文件替换为转译源而不是原始 typescript 源。terser 是否能够在 sourcemap 文件中保留源?