├── .gitattributes ├── .gitignore ├── README.md ├── __tests__ ├── index.test.js └── postinstall.test.js ├── coverage ├── clover.xml ├── coverage-final.json ├── lcov-report │ ├── auto-import-helper │ │ ├── index.html │ │ ├── index.js.html │ │ └── scripts │ │ │ ├── index.html │ │ │ └── postinstall.js.html │ ├── base.css │ ├── block-navigation.js │ ├── favicon.png │ ├── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js └── lcov.info ├── index.d.ts ├── index.js ├── jest.config.js ├── package.json ├── scripts └── postinstall.js ├── tsconfig.json └── tsconfig.json.backup-1742067905967 /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/__tests__/index.test.js -------------------------------------------------------------------------------- /__tests__/postinstall.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/__tests__/postinstall.test.js -------------------------------------------------------------------------------- /coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/clover.xml -------------------------------------------------------------------------------- /coverage/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/coverage-final.json -------------------------------------------------------------------------------- /coverage/lcov-report/auto-import-helper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/auto-import-helper/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/auto-import-helper/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/auto-import-helper/index.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/auto-import-helper/scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/auto-import-helper/scripts/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/auto-import-helper/scripts/postinstall.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/auto-import-helper/scripts/postinstall.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/package.json -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/scripts/postinstall.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json.backup-1742067905967: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alamin-Juma/import-aliases/HEAD/tsconfig.json.backup-1742067905967 --------------------------------------------------------------------------------