Currently, I am working on a project named client which relies on components and services from the core project. The core project, written in TypeScript, has not been compiled or built yet. To speed up the development of the client application, I need to work on both the core and client simultaneously. To achieve this, I created an npm link from the client to the core. However, when I attempt to utilize the core code, I encounter an error message.
Module parse failed: Unexpected token (7:34)
You may need an appropriate loader to handle this file type, as currently no loaders are configured to process this file. Check out https://webpack.js.org/concepts#loaders for more information.
I suspect that webpack is not using the correct loader to build the TypeScript node module. Is there a solution to this issue without having to eject the configuration files?