Share common typescript code across node projects
问题 Assuming I have the following project structure: webapps ProjectA SomeClass.ts Package.json ProjectB SomeClass.ts Package.json Common LoggingClass.ts Package.json The Common "LoggingClass" need to import a module from NPM. Let's assume that module is UUID (https://www.npmjs.com/package/uuid) The problem, or the challenge is the following: We want to use and import the "LoggingClass" in both ProjectA and ProjectB. Thing is, they can import the code from the common folder without a problem, but