Zdefiniowałem klasę w module:
"use strict";
var AspectTypeModule = function() {};
module.exports = AspectTypeModule;
var AspectType = class AspectType {
// ...
};
module.export.AspectType = AspectType;
Ale pojawia się następujący komunikat o błędzie:
TypeError: Cannot set property 'AspectType' of undefined
at Object.<anonymous> (...\AspectType.js:30:26)
at Module._compile (module.js:434:26)
....
Jak mam wyeksportować tę klasę i użyć jej w innym module? Widziałem inne pytania SO, ale otrzymuję inne komunikaty o błędach, gdy próbuję wdrożyć ich rozwiązania.
'use strict'
modułu ani klasy; jest to zachowanie domyślne. Nr ref. 10.2.1 Kod trybu ścisłego