mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
// @Filename: foo1.ts
|
|
export function x() {
|
|
return true;
|
|
}
|
|
// @Filename: foo2.ts
|
|
const foo1 = require('./foo1');
|
|
module.exports = foo1.x // Ok
|
|
;
|