TypeScript/tests/cases/conformance/salsa/moduleExportAlias5.ts
Nathan Shively-Sanders 923a8aab0e
Add Variable to HasExports (#24871)
JS containers are variables, but may have exports just like classes and
modules.
2018-06-11 14:45:27 -07:00

12 lines
221 B
TypeScript

// @checkJs: true
// @allowJS: true
// @noEmit: true
// @Filename: bug24754.js
// #24754
const webpack = function (){
}
exports = module.exports = webpack;
exports.version = 1001;
webpack.WebpackOptionsDefaulter = 1111;