mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
b887b30092
**Description:** This is required for https://github.com/swc-project/swc/pull/6981 and https://github.com/swc-project/swc/pull/6950
15 lines
231 B
TypeScript
15 lines
231 B
TypeScript
// @outdir: out/
|
|
// @target: esnext
|
|
// @module: esnext
|
|
// @allowJs: true
|
|
// @filename: plainJSGrammarErrors2.js
|
|
|
|
// @filename: /a.js
|
|
export default 1;
|
|
|
|
// @filename: /b.js
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
export { default as A } from "./a";
|