Transpilation - ES6 standards & keywords
Closed this issue · 0 comments
BartoszKlonowski commented
The goal of this issue is to configure the full transpilation for the project.
This is to have the ES6 standard supported when it comes to import
, export
keywords and a broad support of different browsers variation in future.
The plan for configuration is to create a flow of having:
Code containing ES6 standards and many source code files -> Babel transpilation -> Webpack package.
This will include tools like:
- Babel
Along with it's plugins and presets like: @babel/cli, @babel/core, @babel/node, @babel/preset-env, @babel/register.
All of them should be installed on their latest, but required: > 7.x.x - Webpack
This tool is to ensure that all source code files, which are in fact html scripts are packed into one source code.
This will avoid having html affected by the architecture.