I created an Angular project, inside it I init Firebase Cloud Functions. My folder become like this:
project-root
node_modules
src
app
(angular components)
functions
node_modules
src
index.ts
I want some of my typescript classes can be used in both Cloud Functions and Angular, without making copies in both folder, but I don't know how to do it.
If possible, I also want them to share same node-modules.