Failure to serve local transpiled TypeScript library files correctly using workspace configuration
Opened this issue · 1 comments
Expected Behavior
When adding a local TypeScript UI5 library to my UI5 app descriptor and using the UI5 Tooling workspace configuration, the UI5 Tooling should recognize the library as being implemented in TypeScript and serve the transpiled files via the webserver when running the app using ui5 serve.
Current Behavior
While using ui5 serve
the UI5 app tries to fetch the library.js file, resulting in an error failed to load 'mylibrary/library.js' from resources/mylibrary/library.js: script load error
Copying the the transpiled file from dist/resources/mylibrary/library.js
to src/
results in the browser being able to load this specific file.
Steps to Reproduce the Issue
- Create a TypeScript UI5 app using
yo easy-ui5
- Create a TypeScript UI5 library using
yo easy-ui5
- Set up the workspace configuration as described in UI5 Tooling documentation UI5 Tooling - Development Overview
- Add the local library in the app descriptor under
sap.ui5
>dependencies
>libs
- Run
ui5 serve
in app directory - The browser console will show an error when trying to retrieve
library.js
Context
- UI5 Module Version (output of
ui5 --version
when using the CLI):4.0.0
- Node.js Version:
20.11.0
- npm Version:
10.2.4
- OS/Platform:
macOS Sonoma 14.5
- Browser (if relevant):
unknown
- Other information regarding your environment (optional):
nothing
Log Output / Stack Trace
Hi @catbuubuu ,
Thank you for your feedback!
Currently the UI5 Tooling does not provide typescript transpilation out of the box. However, there are plenty of middlewares that could be used.
You can use, for example the ui5-tooling-transpile middleware/task
Cheers