File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,17 @@ Via `.babelrc` or `babel-loader`.
5353// Input Code
5454import ' ./' ;
5555import ' ./main' ;
56+ import png from ' ./logo.png' ;
5657import { Button } from ' uiw' ;
5758import { Select } from ' @uiw/core' ;
59+ export { oneBackLevel } from ' ..' ;
5860
5961// Output ↓ ↓ ↓ ↓ ↓ ↓
6062import ' ./index.js' ;
6163import ' ./main.js' ;
6264import { Button } from ' uiw' ;
6365import { Select } from ' @uiw/core' ;
66+ export { oneBackLevel } from " ../index.js" ;
6467```
6568
6669Output Result
@@ -70,8 +73,11 @@ Output Result
7073- import './main';
7174+ import './index.js';
7275+ import './main.js';
76+ import png from './logo.png';
7377import { Button } from 'uiw';
7478import { Select } from '@uiw/core';
79+ - export { oneBackLevel } from '..';
80+ + export { oneBackLevel } from "../index.js";
7581```
7682
7783## Options
You can’t perform that action at this time.
0 commit comments