mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
17 lines
218 B
TypeScript
17 lines
218 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @strict: true
|
|
// @outDir: out
|
|
// @declaration: true
|
|
|
|
// @filename: main.js
|
|
const x = require('./ch').x
|
|
x
|
|
x.grey
|
|
x.x.grey
|
|
// @filename: ch.js
|
|
const x = {
|
|
grey: {}
|
|
}
|
|
export { x }
|