mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
14 lines
252 B
TypeScript
14 lines
252 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @strict: true
|
|
// @outDir: out
|
|
// @declaration: true
|
|
// @filename: node_modules/untyped/index.js
|
|
module.exports = {}
|
|
|
|
// @filename: bug40140.js
|
|
const u = require('untyped');
|
|
u.assignment.nested = true
|
|
u.noError()
|
|
|