I'm now working with import and export and my question about this topic is can I import multifiles?
Example:
Modul 1: main_modules.js - export const allMainModules
Modul 2: second_modules.js - export const allSecondModules
classes: classStorage.js
import
{
mainModules_func1,
mainModules_func2 secondModules_func1,
secondModules_func4
} from "./*modules.js";*
import classStorage
Maybe there is a way to import and watch to all .js files which includes modules in their filename -> "" is working like "everyFile"_modules.js
Thanks for the answers ^^
I was searching on msdn, w3schools and stackoverflow. I have found a lot, but nothing about this specific question.