You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sources in backend and frontend would be happier with the same module loader
Problem:
Usage of different module loader in backend and frontend result in duplication of js sources
This becomes an easy problem if the only code we provide is in TypeScript since developers will be able to generate the js sources using the module loader they desire.
Solutions:
Keep two differents module loader but generate differents js sources => Typescript set up with two tsconfig and different target dir
Sources in backend and frontend would be happier with the same module loader
Problem:
This becomes an easy problem if the only code we provide is in TypeScript since developers will be able to generate the js sources using the module loader they desire.
Solutions:
Keep two differents module loader but generate differents js sources => Typescript set up with two tsconfig and different target dir
Generate only one js source and use the same module loader: http://stuk.github.io/require1k/ (CommonJs for browser)
The text was updated successfully, but these errors were encountered: