| [auto-sync-export]
 usagewhen save document in a.{ts,js,jsx,tsx}, findexportand copy to./index.{ts,js,jsx,tsx}. let's say we have file named a.ts // a.ts
const foo = 1;
const bar = 2;
export default foo;
export { bar };
 ./index.{ts,js,jsx,tsx}will change synchronously.
 export { default as foo } from './a';
export { bar } from './a';
 supported list 
.jsx.tsx.jx.tsextensionsnamed exports only TODO LIST 
[ ] test case for parser[ ] more strict logic for adding export to index.{ts,js,jsx,tsx}[ ] chore LicenseMIT License © 2022 ShaolinWang |  |