mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
21 lines
441 B
TypeScript
21 lines
441 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @noEmit: true
|
|
// @module: commonjs
|
|
// @filename: node.d.ts
|
|
declare function require(id: string): any;
|
|
declare var module: any, exports: any;
|
|
|
|
// @filename: index.js
|
|
const A = require("./other");
|
|
const a = new A().id;
|
|
|
|
const B = function() { this.id = 1; }
|
|
B.prototype.m = function() { this.x = 2; }
|
|
const b = new B();
|
|
b.id;
|
|
b.x;
|
|
|
|
// @filename: other.js
|
|
function A() { this.id = 1; }
|
|
module.exports = A; |