How to include a Javascript file?

Importing Javascript files works exactly the same as importing files in SCSS but without « @ », using :

import "your-js-file";

If your file is inside a folder, you have to write the whole path to this file :

import "your-folder/your-js-file";