为什么我的 Firebase Functions 模拟器不是 运行 我在 Typescript 中的更改?

Why is my Firebase Functions emulator not running my changes in Typescript?

我正在使用 Firebase Functions 模拟器。但是当我更改代码时,它仍然是 运行 旧版本。我正在使用打字稿。

我怎样才能得到 运行 新版本?

正如他们在 documentation 中所述:

Note: Code changes you make during an active session are automatically reloaded by the emulator. If your code needs to be transpiled (TypeScript, React) make sure to do so before running the emulator.

您可以通过 运行 npm run build 在您的函数文件夹中执行此操作。