mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 22:56:11 +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;
|