mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
13 lines
225 B
TypeScript
13 lines
225 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @target: es5
|
|
// @outDir: ./out
|
|
// @declaration: true
|
|
// @filename: cls.js
|
|
const Strings = {
|
|
a: "A",
|
|
b: "B"
|
|
};
|
|
class Foo {}
|
|
module.exports = Foo;
|
|
module.exports.Strings = Strings; |