mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
// @allowJs: true
|
|
// @noEmit: true
|
|
// @checkJs: true
|
|
// @target: esnext
|
|
// @module: esnext
|
|
// @Filename: bug28014.js
|
|
exports.version = 1
|
|
function alias() { }
|
|
module.exports = alias
|
|
|
|
// @Filename: importer.js
|
|
import('./bug28014')
|