├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src └── index.ts ├── tests ├── __snapshots__ │ └── index.test.ts.snap ├── index.test.ts └── service │ ├── entities │ ├── server.ts │ └── user.ts │ ├── main.ts │ └── migrations │ ├── 01.js │ ├── 02.ts │ ├── 03.ts │ ├── 10.js │ └── subfolder │ └── sub.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tests 3 | src -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tests/service/entities/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/service/entities/server.ts -------------------------------------------------------------------------------- /tests/service/entities/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/service/entities/user.ts -------------------------------------------------------------------------------- /tests/service/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/service/main.ts -------------------------------------------------------------------------------- /tests/service/migrations/01.js: -------------------------------------------------------------------------------- 1 | const a = '1js'; 2 | 3 | export default a; 4 | -------------------------------------------------------------------------------- /tests/service/migrations/02.ts: -------------------------------------------------------------------------------- 1 | const a = '2ts'; 2 | 3 | export default a; 4 | -------------------------------------------------------------------------------- /tests/service/migrations/03.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/service/migrations/03.ts -------------------------------------------------------------------------------- /tests/service/migrations/10.js: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /tests/service/migrations/subfolder/sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tests/service/migrations/subfolder/sub.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaschaaf/esbuild-plugin-import-glob/HEAD/tsconfig.json --------------------------------------------------------------------------------