项目中用到 @types/node 中 url 模块的 Global 接口
升级所有 npm 包之后,build 时却报错找不到 Global
error TS2304: Cannot find name 'Global'
@types/node 在后来的版本中从 url 模块中去掉了 Global 接口,需要自己增加这个接口
Global
interface Global { }