mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
21 lines
351 B
TypeScript
21 lines
351 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @target: es5
|
|
// @outDir: ./out
|
|
// @declaration: true
|
|
// @filename: obj.js
|
|
module.exports = class Obj {
|
|
constructor() {
|
|
this.x = 12;
|
|
}
|
|
}
|
|
// @filename: index.js
|
|
const Obj = require("./obj");
|
|
|
|
class Container {
|
|
constructor() {
|
|
this.usage = new Obj();
|
|
}
|
|
}
|
|
|
|
module.exports = Container; |