Export allFolder
Adds a export for all files in current dir.
output example:
// files:
// TestTsx.tsx
// testTs.ts
// testJs.js
// Test.jsx
// testFolder/index.ts
// testFolder/index.tsx
// output:
export * from './TestTsx'
export * from './testTs'
export * from './testJs'
export * from './Test'
export * from './testFolder'
Usage
| |