mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
// @module: node16,nodenext
|
|
// @allowJs: true
|
|
// @noEmit: true
|
|
// @filename: foo.cjs
|
|
exports.foo = "foo"
|
|
// @filename: bar.ts
|
|
import foo from "./foo.cjs"
|
|
foo.foo; |