mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +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; |