您应该如何构建您的 firebase 项目?

发布于 2025-01-21 04:06:50 字数 1394 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

知你几分 2025-01-28 04:06:50

我不知道什么是最好的结构,当然它是上下文相关的。我的目标是快速开始。

我确实有一个解决方案,就是在前端存储库中嵌套 functions 目录时出现重复类型错误,如下所示:

|-frontend
  |-functions
    |-node_modules
    |-src
    |-tsconfig.json
  |-node_modules
  |-src

我们需要在 tsconfig.json< 中指定 typeRoots functions 目录的 /code> 或其他类型将遍历到父 node_modules

  "compilerOptions": {
    "typeRoots": [
      "./node_modules/@types"
    ]
  }
}

I don't have an answer for what the best structure would be, surely it's contextual. My goal was to get to started quickly.

What I do have a solution for is the duplicate type errors when nesting functions directory in your frontend repo like so:

|-frontend
  |-functions
    |-node_modules
    |-src
    |-tsconfig.json
  |-node_modules
  |-src

We need to specify typeRoots in tsconfig.json of the functions directory or else types get traversed up to the parent node_modules.

  "compilerOptions": {
    "typeRoots": [
      "./node_modules/@types"
    ]
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文