mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
// @module: commonjs
|
|
// @Filename: foo_0.ts
|
|
export var x = 42;
|
|
|
|
// @Filename: foo_1.ts
|
|
import foo = require('./test/foo');
|
|
var z = foo.x + 10;
|