mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 23:27:56 +03:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @outDir: ./out
|
||
|
// @declaration: true
|
||
|
// @filename: index.js
|
||
|
function foo() {}
|
||
|
|
||
|
foo.foo = foo;
|
||
|
foo.default = foo;
|
||
|
module.exports = foo;
|