├── .deepsource.toml ├── .gitignore ├── README.md ├── package.json ├── src └── index.ts ├── test └── transform-import.test.mjs └── tsconfig.json /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/transform-import.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/test/transform-import.test.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchouhan1020/swc-plugin-transform-import/HEAD/tsconfig.json --------------------------------------------------------------------------------