webpack/test/configCases/library/0-create-library/commonjs.js

13 lines
156 B
JavaScript
Raw Normal View History

const a = 10;
const b = 20;
class MyClass {
getValue() {
return "my-class";
}
}
module.exports = MyClass;
module.exports.a = a;
module.exports.b = b;