├── .changeset ├── README.md └── config.json ├── .codesandbox └── ci.json ├── .commitlintrc ├── .editorconfig ├── .env.yarn ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── autofix.yml │ ├── ci.yml │ ├── pkg-pr-new.yml │ ├── release.yml │ └── size-limit.yml ├── .gitignore ├── .nano-staged.js ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .remarkrc ├── .renovaterc ├── .simple-git-hooks.js ├── .size-limit.json ├── .yarn ├── plugins │ └── plugin-prepare-lifecycle.cjs └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dummy.js ├── index.js └── package.json ├── eslint.config.js ├── package.json ├── src ├── constants.ts ├── global.d.ts ├── helpers.ts ├── index.ts ├── logger.ts ├── normalize-options.ts ├── tsconfig.json └── types.ts ├── tests ├── e2e │ ├── __snapshots__ │ │ └── e2e.spec.ts.snap │ ├── absoluteAlias │ │ ├── .eslintrc.cjs │ │ ├── public │ │ │ └── images │ │ │ │ └── foo.ts │ │ ├── test.ts │ │ └── tsconfig.json │ ├── base.eslintrc.cjs │ ├── dotInclude │ │ ├── .dot │ │ │ ├── index.ts │ │ │ ├── module │ │ │ │ ├── module.d.ts │ │ │ │ └── package.json │ │ │ ├── subfolder │ │ │ │ ├── tsImportee.ts │ │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ ├── .eslintrc.cjs │ │ └── tsconfig.json │ ├── dotPaths │ │ ├── .dot │ │ │ ├── module │ │ │ │ ├── module.d.ts │ │ │ │ └── package.json │ │ │ ├── subfolder │ │ │ │ ├── tsImportee.ts │ │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ ├── .eslintrc.cjs │ │ ├── index.ts │ │ └── tsconfig.json │ ├── dotProject │ │ ├── .eslintrc.cjs │ │ └── packages │ │ │ ├── module-a │ │ │ ├── .dot │ │ │ │ └── tsconfig.json │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ │ ├── tsImportee.ts │ │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ │ └── module-b │ │ │ ├── .dot │ │ │ └── tsconfig.json │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ ├── e2e.spec.ts │ ├── filesWithDifferentOptions │ │ ├── eslint.config.js │ │ ├── src │ │ │ ├── a.bar.js │ │ │ ├── a.foo.js │ │ │ ├── x.foo.js │ │ │ └── y.bar.js │ │ └── tsconfig.json │ ├── importXResolverV3 │ │ ├── eslint.config.js │ │ └── packages │ │ │ ├── module-a │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ │ ├── tsImportee.ts │ │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ ├── tsconfig.json │ │ │ └── tsxImportee.tsx │ │ │ └── module-b │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ ├── tsconfig.json │ │ │ └── tsxImportee.tsx │ ├── multipleEslintrcs │ │ ├── module-a │ │ │ ├── .eslintrc.cjs │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ │ ├── tsImportee.ts │ │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ ├── tsconfig.json │ │ │ └── tsxImportee.tsx │ │ └── module-b │ │ │ ├── .eslintrc.cjs │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ ├── tsconfig.json │ │ │ └── tsxImportee.tsx │ ├── multipleTsconfigs │ │ ├── .eslintrc.cjs │ │ └── packages │ │ │ ├── module-a │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ │ ├── tsImportee.ts │ │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ ├── tsconfig.json │ │ │ └── tsxImportee.tsx │ │ │ └── module-b │ │ │ ├── index.ts │ │ │ ├── subfolder │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ │ ├── tsImportee.ts │ │ │ ├── tsconfig.json │ │ │ └── tsxImportee.tsx │ ├── nearestTsconfig │ │ ├── .eslintrc.cjs │ │ ├── a │ │ │ ├── app │ │ │ │ └── app.ts │ │ │ ├── b │ │ │ │ ├── app │ │ │ │ │ └── app.ts │ │ │ │ ├── c │ │ │ │ │ ├── app │ │ │ │ │ │ └── app.ts │ │ │ │ │ ├── components │ │ │ │ │ │ └── c.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── components │ │ │ │ │ └── b.ts │ │ │ │ └── tsconfig.json │ │ │ ├── components │ │ │ │ └── a.ts │ │ │ └── tsconfig.json │ │ ├── app │ │ │ └── app.ts │ │ ├── components │ │ │ └── root.ts │ │ └── tsconfig.json │ ├── package.json │ ├── withJsExtension │ │ ├── .eslintrc.cjs │ │ ├── bar │ │ │ └── index.tsx │ │ ├── cjsImportee.cjs │ │ ├── ctsImportee.cts │ │ ├── d-ctsImportee.d.cts │ │ ├── d-mtsImportee.d.mts │ │ ├── dtsImportee.d.ts │ │ ├── foo.cjs │ │ │ └── index.ts │ │ ├── foo.js │ │ │ └── index.ts │ │ ├── foo.jsx │ │ │ └── index.ts │ │ ├── foo.mjs │ │ │ └── index.ts │ │ ├── foo │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── jsImportee.js │ │ ├── jsxImportee.jsx │ │ ├── mjsImportee.mjs │ │ ├── mtsImportee.mts │ │ ├── test.cjs │ │ ├── tsImportee.ts │ │ ├── tsconfig.json │ │ └── tsxImportee.tsx │ ├── withJsconfig │ │ ├── .eslintrc.cjs │ │ ├── importee.js │ │ ├── index.js │ │ └── jsconfig.json │ ├── withPaths │ │ ├── .eslintrc.cjs │ │ ├── index.ts │ │ ├── module │ │ │ ├── module.d.ts │ │ │ └── package.json │ │ ├── subfolder │ │ │ ├── tsImportee.ts │ │ │ └── tsxImportee.tsx │ │ ├── tsImportee.ts │ │ ├── tsconfig.json │ │ └── tsxImportee.tsx │ ├── withPathsAndNestedBaseUrl │ │ ├── .eslintrc.cjs │ │ ├── other │ │ │ └── bar.ts │ │ ├── root │ │ │ └── foo.ts │ │ └── tsconfig.json │ ├── withQuerystring │ │ ├── .eslintrc.cjs │ │ ├── image.svg │ │ ├── index.ts │ │ ├── subfolder │ │ │ └── image.svg │ │ └── tsconfig.json │ └── withoutPaths │ │ ├── .eslintrc.cjs │ │ ├── dtsImportee.d.ts │ │ ├── index.ts │ │ ├── subfolder │ │ ├── dtsImportee.d.ts │ │ ├── tsImportee.ts │ │ └── tsxImportee.tsx │ │ ├── tsImportee.ts │ │ ├── tsconfig.json │ │ └── tsxImportee.tsx ├── global.d.ts ├── tsconfig.json └── unit │ ├── dts │ └── foo.d.ts │ ├── malformed-reference │ ├── index.ts │ └── tsconfig.json │ ├── pnp │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .yarn │ │ ├── cache │ │ │ ├── @atlaskit-analytics-next-npm-11.0.0-dee51f68fd-c5b0fb7f4c.zip │ │ │ ├── @atlaskit-analytics-next-stable-react-context-npm-1.0.1-7582c45125-b32e35c260.zip │ │ │ ├── @atlaskit-app-provider-npm-2.2.0-c66a549c49-553cf510da.zip │ │ │ ├── @atlaskit-atlassian-context-npm-0.2.0-2d87bc346f-c9481e62c0.zip │ │ │ ├── @atlaskit-css-npm-0.10.6-aef5a93234-16f1fa4b9c.zip │ │ │ ├── @atlaskit-ds-lib-npm-4.0.0-2657fb4860-3b42595e40.zip │ │ │ ├── @atlaskit-feature-gate-js-client-npm-5.3.1-5ba19e6813-f1deae06d5.zip │ │ │ ├── @atlaskit-interaction-context-npm-3.0.0-c7cd6bc1f6-ff1defa453.zip │ │ │ ├── @atlaskit-link-npm-3.2.0-826b5a551f-f3551a340a.zip │ │ │ ├── @atlaskit-platform-feature-flags-npm-1.1.1-cd4133dd9e-3bdd0e19b4.zip │ │ │ ├── @atlaskit-pragmatic-drag-and-drop-npm-1.7.0-2fb827d798-dc5f297086.zip │ │ │ ├── @atlaskit-primitives-npm-14.8.0-3b286f743e-08bdc3c6be.zip │ │ │ ├── @atlaskit-tokens-npm-4.9.0-620f17c75a-5158f0c204.zip │ │ │ ├── @atlaskit-visually-hidden-npm-3.0.3-ce3c05b0a7-6cddb8ff7c.zip │ │ │ ├── @babel-code-frame-npm-7.27.1-4dbcabb137-5dd9a18baa.zip │ │ │ ├── @babel-generator-npm-7.27.1-12737d533a-c4156434b2.zip │ │ │ ├── @babel-helper-module-imports-npm-7.27.1-3bf33978f4-e00aace096.zip │ │ │ ├── @babel-helper-string-parser-npm-7.27.1-d1471e0598-8bda3448e0.zip │ │ │ ├── @babel-helper-validator-identifier-npm-7.27.1-2c3cefd5dc-c558f11c48.zip │ │ │ ├── @babel-parser-npm-7.27.2-70cd61f3e6-3c06692768.zip │ │ │ ├── @babel-runtime-npm-7.27.0-67ce9cb54f-35091ea9de.zip │ │ │ ├── @babel-runtime-npm-7.27.1-c9b375440e-530a7332f8.zip │ │ │ ├── @babel-template-npm-7.27.2-77e67eabbd-ed9e902265.zip │ │ │ ├── @babel-traverse-npm-7.27.1-cdef168378-d912110037.zip │ │ │ ├── @babel-types-npm-7.27.1-2a01e9d02f-ed736f14db.zip │ │ │ ├── @compiled-react-npm-0.18.4-cec0f2856b-3192db2239.zip │ │ │ ├── @emotion-babel-plugin-npm-11.13.5-ca65815e43-8ccbfec7de.zip │ │ │ ├── @emotion-cache-npm-11.14.0-83baa0ff98-3fa3e7a431.zip │ │ │ ├── @emotion-hash-npm-0.9.2-21b49040cb-0dc254561a.zip │ │ │ ├── @emotion-memoize-npm-0.9.0-ccd80906b3-13f474a920.zip │ │ │ ├── @emotion-react-npm-11.14.0-2743f93910-d0864f571a.zip │ │ │ ├── @emotion-serialize-npm-1.3.3-b390a9707a-b28cb7de59.zip │ │ │ ├── @emotion-sheet-npm-1.4.0-fb64d8f222-3ca72d1650.zip │ │ │ ├── @emotion-unitless-npm-0.10.0-bd15580251-1509431927.zip │ │ │ ├── @emotion-use-insertion-effect-with-fallbacks-npm-1.2.0-a897c3d989-074dbc92b9.zip │ │ │ ├── @emotion-utils-npm-1.4.2-2cf43fb561-7d0010bf60.zip │ │ │ ├── @emotion-weak-memoize-npm-0.4.0-76aafb2333-64376af11f.zip │ │ │ ├── @jridgewell-gen-mapping-npm-0.3.8-647be6e286-c668feaf86.zip │ │ │ ├── @jridgewell-resolve-uri-npm-3.1.2-5bc4245992-d502e6fb51.zip │ │ │ ├── @jridgewell-set-array-npm-1.2.1-2312928209-2a5aa7b4b5.zip │ │ │ ├── @jridgewell-sourcemap-codec-npm-1.5.0-dfd9126d71-2eb864f276.zip │ │ │ ├── @jridgewell-trace-mapping-npm-0.3.25-c076fd2279-3d1ce6ebc6.zip │ │ │ ├── @statsig-client-core-npm-3.17.1-9f8a5579d4-4553ddff9e.zip │ │ │ ├── @statsig-js-client-npm-3.17.1-ae513a2b32-ffa2218a56.zip │ │ │ ├── @types-parse-json-npm-4.0.2-f87f65692e-b1b863ac34.zip │ │ │ ├── babel-plugin-macros-npm-3.1.0-320e781f4e-c6dfb15de9.zip │ │ │ ├── bind-event-listener-npm-3.0.0-c29621e676-08eadf1c7d.zip │ │ │ ├── callsites-npm-3.1.0-268f989910-fff9227740.zip │ │ │ ├── convert-source-map-npm-1.9.0-e294555f4b-281da55454.zip │ │ │ ├── cosmiconfig-npm-7.1.0-13a5090bcd-b923ff6af5.zip │ │ │ ├── csstype-npm-3.1.3-e9a1c85013-80c089d6f7.zip │ │ │ ├── debug-npm-4.4.1-6eab84b9f7-d2b44bc1af.zip │ │ │ ├── error-ex-npm-1.3.2-5654f80c0f-ba827f8936.zip │ │ │ ├── escape-string-regexp-npm-4.0.0-4b531d8d59-9497d4dd30.zip │ │ │ ├── eventemitter2-npm-4.1.2-5f5ab40d0b-32b5ca5d9d.zip │ │ │ ├── find-root-npm-1.1.0-a16a94005f-1abc7f3bf2.zip │ │ │ ├── function-bind-npm-1.1.2-7a55be9b03-d8680ee1e5.zip │ │ │ ├── globals-npm-11.12.0-1fa7f41a6c-758f9f258e.zip │ │ │ ├── hasown-npm-2.0.2-80fe6c9901-3769d43470.zip │ │ │ ├── hoist-non-react-statics-npm-3.3.2-e7b709e6c1-fe0889169e.zip │ │ │ ├── import-fresh-npm-3.3.1-1916794950-bf8cc49487.zip │ │ │ ├── is-arrayish-npm-0.2.1-23927dfb15-e7fb686a73.zip │ │ │ ├── is-core-module-npm-2.16.1-a54837229e-898443c147.zip │ │ │ ├── js-tokens-npm-4.0.0-0ac852e9e2-e248708d37.zip │ │ │ ├── jsesc-npm-3.1.0-2f4f998cd7-531779df5e.zip │ │ │ ├── json-parse-even-better-errors-npm-2.3.1-144d62256e-140932564c.zip │ │ │ ├── lines-and-columns-npm-1.2.4-d6c7cc5799-3da6ee62d4.zip │ │ │ ├── lodash.zip-npm-4.2.0-5299417ec8-e596da80a6.zip │ │ │ ├── loose-envify-npm-1.4.0-6307b72ccf-655d110220.zip │ │ │ ├── ms-npm-2.1.3-81ff3cfac1-d924b57e73.zip │ │ │ ├── object-assign-npm-4.1.1-1004ad6dec-1f4df99451.zip │ │ │ ├── parent-module-npm-1.0.1-1fae11b095-c63d6e8000.zip │ │ │ ├── parse-json-npm-5.2.0-00a63b1199-77947f2253.zip │ │ │ ├── path-parse-npm-1.0.7-09564527b7-11ce261f9d.zip │ │ │ ├── path-type-npm-4.0.0-10d47fc86a-666f6973f3.zip │ │ │ ├── picocolors-npm-1.1.1-4fede47cf1-e2e3e8170a.zip │ │ │ ├── prop-types-npm-15.8.1-17c71ee7ee-59ece7ca2f.zip │ │ │ ├── raf-schd-npm-4.0.3-18f72af738-ecabf0957c.zip │ │ │ ├── react-is-npm-16.13.1-a9b9382b4f-33977da7a5.zip │ │ │ ├── react-uid-npm-2.4.0-54d5631b5d-5e01e8d3a4.zip │ │ │ ├── regenerator-runtime-npm-0.14.1-a6c97c609a-1b16eb2c4b.zip │ │ │ ├── resolve-from-npm-4.0.0-f758ec21bf-8408eec31a.zip │ │ │ ├── resolve-npm-1.22.10-d6fd9cdec7-8967e1f4e2.zip │ │ │ ├── resolve-patch-b5982cfa8c-52a4e505bb.zip │ │ │ ├── source-map-npm-0.5.7-7c3f035429-904e767bb9.zip │ │ │ ├── stylis-npm-4.2.0-6b07f11c99-a7128ad5a8.zip │ │ │ ├── supports-preserve-symlinks-flag-npm-1.0.0-f17c4d0028-6c40323407.zip │ │ │ ├── tiny-invariant-npm-1.3.3-e622f1447c-65af4a0732.zip │ │ │ ├── tslib-npm-2.8.1-66590b21b8-9c4759110a.zip │ │ │ ├── use-memo-one-npm-1.1.3-b9dc77468a-3d596e65a6.zip │ │ │ └── yaml-npm-1.10.2-0e780aebdf-5c28b9eb7a.zip │ │ └── releases │ │ │ └── yarn-4.8.1.cjs │ ├── .yarnrc.yml │ ├── README.md │ ├── package.json │ └── yarn.lock │ └── unit.spec.ts ├── tsconfig.json ├── tsconfig.lib.json ├── vitest.config.ts ├── vitest.setup.ts └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.codesandbox/ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.codesandbox/ci.json -------------------------------------------------------------------------------- /.commitlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.commitlintrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.env.yarn -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pkg-pr-new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.github/workflows/pkg-pr-new.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.github/workflows/size-limit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.nano-staged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.nano-staged.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.17.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .yarn 2 | .pnp.* 3 | *.svg 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@1stg/prettier-config" 2 | -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.remarkrc -------------------------------------------------------------------------------- /.renovaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.renovaterc -------------------------------------------------------------------------------- /.simple-git-hooks.js: -------------------------------------------------------------------------------- 1 | export { default } from '@1stg/simple-git-hooks' 2 | -------------------------------------------------------------------------------- /.size-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.size-limit.json -------------------------------------------------------------------------------- /.yarn/plugins/plugin-prepare-lifecycle.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.yarn/plugins/plugin-prepare-lifecycle.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/README.md -------------------------------------------------------------------------------- /dummy.js/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'dummy' 2 | -------------------------------------------------------------------------------- /dummy.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/dummy.js/package.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/normalize-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/normalize-options.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/src/types.ts -------------------------------------------------------------------------------- /tests/e2e/__snapshots__/e2e.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/__snapshots__/e2e.spec.ts.snap -------------------------------------------------------------------------------- /tests/e2e/absoluteAlias/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/absoluteAlias/public/images/foo.ts: -------------------------------------------------------------------------------- 1 | export default 'image.webp' 2 | -------------------------------------------------------------------------------- /tests/e2e/absoluteAlias/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/absoluteAlias/test.ts -------------------------------------------------------------------------------- /tests/e2e/absoluteAlias/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/absoluteAlias/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/base.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/base.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotInclude/.dot/index.ts -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/module/module.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotInclude/.dot/module/package.json -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.dot/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotInclude/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/dotInclude/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotInclude/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.dot/module/module.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.dot/module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotPaths/.dot/module/package.json -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.dot/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.dot/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.dot/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.dot/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotPaths/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/dotPaths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotPaths/index.ts -------------------------------------------------------------------------------- /tests/e2e/dotPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotPaths/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/dotProject/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotProject/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-a/.dot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotProject/packages/module-a/.dot/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotProject/packages/module-a/index.ts -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-a/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-a/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-a/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-a/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-b/.dot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotProject/packages/module-b/.dot/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/dotProject/packages/module-b/index.ts -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-b/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-b/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-b/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/dotProject/packages/module-b/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/e2e.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/e2e.spec.ts -------------------------------------------------------------------------------- /tests/e2e/filesWithDifferentOptions/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/filesWithDifferentOptions/eslint.config.js -------------------------------------------------------------------------------- /tests/e2e/filesWithDifferentOptions/src/a.bar.js: -------------------------------------------------------------------------------- 1 | import y from './y' 2 | -------------------------------------------------------------------------------- /tests/e2e/filesWithDifferentOptions/src/a.foo.js: -------------------------------------------------------------------------------- 1 | import x from './x' 2 | -------------------------------------------------------------------------------- /tests/e2e/filesWithDifferentOptions/src/x.foo.js: -------------------------------------------------------------------------------- 1 | export const x = 'x' 2 | -------------------------------------------------------------------------------- /tests/e2e/filesWithDifferentOptions/src/y.bar.js: -------------------------------------------------------------------------------- 1 | export const y = 'y' 2 | -------------------------------------------------------------------------------- /tests/e2e/filesWithDifferentOptions/tsconfig.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/importXResolverV3/eslint.config.js -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/importXResolverV3/packages/module-a/index.ts -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-a/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-a/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-a/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/importXResolverV3/packages/module-a/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-a/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/importXResolverV3/packages/module-b/index.ts -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-b/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-b/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-b/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/importXResolverV3/packages/module-b/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/importXResolverV3/packages/module-b/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleEslintrcs/module-a/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleEslintrcs/module-a/index.ts -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleEslintrcs/module-a/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-a/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleEslintrcs/module-b/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleEslintrcs/module-b/index.ts -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleEslintrcs/module-b/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/multipleEslintrcs/module-b/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleTsconfigs/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleTsconfigs/packages/module-a/index.ts -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-a/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-a/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-a/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleTsconfigs/packages/module-a/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-a/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleTsconfigs/packages/module-b/index.ts -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-b/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-b/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-b/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/multipleTsconfigs/packages/module-b/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/multipleTsconfigs/packages/module-b/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/a/app/app.ts -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/b/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/a/b/app/app.ts -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/b/c/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/a/b/c/app/app.ts -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/b/c/components/c.ts: -------------------------------------------------------------------------------- 1 | export default 'c' 2 | -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/b/c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/a/b/c/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/b/components/b.ts: -------------------------------------------------------------------------------- 1 | export default 'b' 2 | -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/a/b/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/components/a.ts: -------------------------------------------------------------------------------- 1 | export default 'a' 2 | -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/a/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/app/app.ts: -------------------------------------------------------------------------------- 1 | import 'components/root' 2 | -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/components/root.ts: -------------------------------------------------------------------------------- 1 | export default 'root' 2 | -------------------------------------------------------------------------------- /tests/e2e/nearestTsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/nearestTsconfig/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/package.json -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/bar/index.tsx: -------------------------------------------------------------------------------- 1 | export default 'bar' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/cjsImportee.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/cjsImportee.cjs -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/ctsImportee.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/ctsImportee.cts -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/d-ctsImportee.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/d-ctsImportee.d.cts -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/d-mtsImportee.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/d-mtsImportee.d.mts -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/dtsImportee.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/dtsImportee.d.ts -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/foo.cjs/index.ts: -------------------------------------------------------------------------------- 1 | export default 'foo.cjs' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/foo.js/index.ts: -------------------------------------------------------------------------------- 1 | export default 'foo.js' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/foo.jsx/index.ts: -------------------------------------------------------------------------------- 1 | export default 'foo.jsx' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/foo.mjs/index.ts: -------------------------------------------------------------------------------- 1 | export default 'foo.mjs' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/foo/index.ts: -------------------------------------------------------------------------------- 1 | export default 'foo' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/index.ts -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/jsImportee.js: -------------------------------------------------------------------------------- 1 | export default 'jsImportee.js' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/jsxImportee.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/jsxImportee.jsx -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/mjsImportee.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/mjsImportee.mjs -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/mtsImportee.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/mtsImportee.mts -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/test.cjs -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'tsImportee.ts' 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/withJsExtension/tsxImportee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsExtension/tsxImportee.tsx -------------------------------------------------------------------------------- /tests/e2e/withJsconfig/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/withJsconfig/importee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsconfig/importee.js -------------------------------------------------------------------------------- /tests/e2e/withJsconfig/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsconfig/index.js -------------------------------------------------------------------------------- /tests/e2e/withJsconfig/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withJsconfig/jsconfig.json -------------------------------------------------------------------------------- /tests/e2e/withPaths/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/withPaths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withPaths/index.ts -------------------------------------------------------------------------------- /tests/e2e/withPaths/module/module.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /tests/e2e/withPaths/module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withPaths/module/package.json -------------------------------------------------------------------------------- /tests/e2e/withPaths/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/withPaths/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/withPaths/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/withPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withPaths/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/withPaths/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/withPathsAndNestedBaseUrl/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/withPathsAndNestedBaseUrl/other/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withPathsAndNestedBaseUrl/other/bar.ts -------------------------------------------------------------------------------- /tests/e2e/withPathsAndNestedBaseUrl/root/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withPathsAndNestedBaseUrl/root/foo.ts -------------------------------------------------------------------------------- /tests/e2e/withPathsAndNestedBaseUrl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withPathsAndNestedBaseUrl/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/withQuerystring/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/withQuerystring/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withQuerystring/image.svg -------------------------------------------------------------------------------- /tests/e2e/withQuerystring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withQuerystring/index.ts -------------------------------------------------------------------------------- /tests/e2e/withQuerystring/subfolder/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withQuerystring/subfolder/image.svg -------------------------------------------------------------------------------- /tests/e2e/withQuerystring/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withQuerystring/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../base.eslintrc.cjs')(__dirname) 2 | -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/dtsImportee.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withoutPaths/dtsImportee.d.ts -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withoutPaths/index.ts -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/subfolder/dtsImportee.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withoutPaths/subfolder/dtsImportee.d.ts -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/subfolder/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/subfolder/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/tsImportee.ts: -------------------------------------------------------------------------------- 1 | export default 'yes' 2 | -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/e2e/withoutPaths/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/withoutPaths/tsxImportee.tsx: -------------------------------------------------------------------------------- 1 | export default 'React Component' 2 | -------------------------------------------------------------------------------- /tests/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/unit/dts/foo.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/malformed-reference/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/malformed-reference/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/malformed-reference/tsconfig.json -------------------------------------------------------------------------------- /tests/unit/pnp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.editorconfig -------------------------------------------------------------------------------- /tests/unit/pnp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.gitattributes -------------------------------------------------------------------------------- /tests/unit/pnp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.gitignore -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-analytics-next-npm-11.0.0-dee51f68fd-c5b0fb7f4c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-analytics-next-npm-11.0.0-dee51f68fd-c5b0fb7f4c.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-analytics-next-stable-react-context-npm-1.0.1-7582c45125-b32e35c260.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-analytics-next-stable-react-context-npm-1.0.1-7582c45125-b32e35c260.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-app-provider-npm-2.2.0-c66a549c49-553cf510da.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-app-provider-npm-2.2.0-c66a549c49-553cf510da.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-atlassian-context-npm-0.2.0-2d87bc346f-c9481e62c0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-atlassian-context-npm-0.2.0-2d87bc346f-c9481e62c0.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-css-npm-0.10.6-aef5a93234-16f1fa4b9c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-css-npm-0.10.6-aef5a93234-16f1fa4b9c.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-ds-lib-npm-4.0.0-2657fb4860-3b42595e40.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-ds-lib-npm-4.0.0-2657fb4860-3b42595e40.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-feature-gate-js-client-npm-5.3.1-5ba19e6813-f1deae06d5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-feature-gate-js-client-npm-5.3.1-5ba19e6813-f1deae06d5.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-interaction-context-npm-3.0.0-c7cd6bc1f6-ff1defa453.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-interaction-context-npm-3.0.0-c7cd6bc1f6-ff1defa453.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-link-npm-3.2.0-826b5a551f-f3551a340a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-link-npm-3.2.0-826b5a551f-f3551a340a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-platform-feature-flags-npm-1.1.1-cd4133dd9e-3bdd0e19b4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-platform-feature-flags-npm-1.1.1-cd4133dd9e-3bdd0e19b4.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-pragmatic-drag-and-drop-npm-1.7.0-2fb827d798-dc5f297086.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-pragmatic-drag-and-drop-npm-1.7.0-2fb827d798-dc5f297086.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-primitives-npm-14.8.0-3b286f743e-08bdc3c6be.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-primitives-npm-14.8.0-3b286f743e-08bdc3c6be.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-tokens-npm-4.9.0-620f17c75a-5158f0c204.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-tokens-npm-4.9.0-620f17c75a-5158f0c204.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@atlaskit-visually-hidden-npm-3.0.3-ce3c05b0a7-6cddb8ff7c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@atlaskit-visually-hidden-npm-3.0.3-ce3c05b0a7-6cddb8ff7c.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-code-frame-npm-7.27.1-4dbcabb137-5dd9a18baa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-code-frame-npm-7.27.1-4dbcabb137-5dd9a18baa.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-generator-npm-7.27.1-12737d533a-c4156434b2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-generator-npm-7.27.1-12737d533a-c4156434b2.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-helper-module-imports-npm-7.27.1-3bf33978f4-e00aace096.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-helper-module-imports-npm-7.27.1-3bf33978f4-e00aace096.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-helper-string-parser-npm-7.27.1-d1471e0598-8bda3448e0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-helper-string-parser-npm-7.27.1-d1471e0598-8bda3448e0.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-helper-validator-identifier-npm-7.27.1-2c3cefd5dc-c558f11c48.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-helper-validator-identifier-npm-7.27.1-2c3cefd5dc-c558f11c48.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-parser-npm-7.27.2-70cd61f3e6-3c06692768.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-parser-npm-7.27.2-70cd61f3e6-3c06692768.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-runtime-npm-7.27.0-67ce9cb54f-35091ea9de.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-runtime-npm-7.27.0-67ce9cb54f-35091ea9de.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-runtime-npm-7.27.1-c9b375440e-530a7332f8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-runtime-npm-7.27.1-c9b375440e-530a7332f8.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-template-npm-7.27.2-77e67eabbd-ed9e902265.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-template-npm-7.27.2-77e67eabbd-ed9e902265.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-traverse-npm-7.27.1-cdef168378-d912110037.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-traverse-npm-7.27.1-cdef168378-d912110037.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@babel-types-npm-7.27.1-2a01e9d02f-ed736f14db.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@babel-types-npm-7.27.1-2a01e9d02f-ed736f14db.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@compiled-react-npm-0.18.4-cec0f2856b-3192db2239.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@compiled-react-npm-0.18.4-cec0f2856b-3192db2239.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-babel-plugin-npm-11.13.5-ca65815e43-8ccbfec7de.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-babel-plugin-npm-11.13.5-ca65815e43-8ccbfec7de.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-cache-npm-11.14.0-83baa0ff98-3fa3e7a431.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-cache-npm-11.14.0-83baa0ff98-3fa3e7a431.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-hash-npm-0.9.2-21b49040cb-0dc254561a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-hash-npm-0.9.2-21b49040cb-0dc254561a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-memoize-npm-0.9.0-ccd80906b3-13f474a920.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-memoize-npm-0.9.0-ccd80906b3-13f474a920.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-react-npm-11.14.0-2743f93910-d0864f571a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-react-npm-11.14.0-2743f93910-d0864f571a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-serialize-npm-1.3.3-b390a9707a-b28cb7de59.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-serialize-npm-1.3.3-b390a9707a-b28cb7de59.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-sheet-npm-1.4.0-fb64d8f222-3ca72d1650.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-sheet-npm-1.4.0-fb64d8f222-3ca72d1650.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-unitless-npm-0.10.0-bd15580251-1509431927.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-unitless-npm-0.10.0-bd15580251-1509431927.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-use-insertion-effect-with-fallbacks-npm-1.2.0-a897c3d989-074dbc92b9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-use-insertion-effect-with-fallbacks-npm-1.2.0-a897c3d989-074dbc92b9.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-utils-npm-1.4.2-2cf43fb561-7d0010bf60.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-utils-npm-1.4.2-2cf43fb561-7d0010bf60.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@emotion-weak-memoize-npm-0.4.0-76aafb2333-64376af11f.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@emotion-weak-memoize-npm-0.4.0-76aafb2333-64376af11f.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@jridgewell-gen-mapping-npm-0.3.8-647be6e286-c668feaf86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@jridgewell-gen-mapping-npm-0.3.8-647be6e286-c668feaf86.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@jridgewell-resolve-uri-npm-3.1.2-5bc4245992-d502e6fb51.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@jridgewell-resolve-uri-npm-3.1.2-5bc4245992-d502e6fb51.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@jridgewell-set-array-npm-1.2.1-2312928209-2a5aa7b4b5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@jridgewell-set-array-npm-1.2.1-2312928209-2a5aa7b4b5.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@jridgewell-sourcemap-codec-npm-1.5.0-dfd9126d71-2eb864f276.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@jridgewell-sourcemap-codec-npm-1.5.0-dfd9126d71-2eb864f276.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@jridgewell-trace-mapping-npm-0.3.25-c076fd2279-3d1ce6ebc6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@jridgewell-trace-mapping-npm-0.3.25-c076fd2279-3d1ce6ebc6.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@statsig-client-core-npm-3.17.1-9f8a5579d4-4553ddff9e.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@statsig-client-core-npm-3.17.1-9f8a5579d4-4553ddff9e.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@statsig-js-client-npm-3.17.1-ae513a2b32-ffa2218a56.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@statsig-js-client-npm-3.17.1-ae513a2b32-ffa2218a56.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/@types-parse-json-npm-4.0.2-f87f65692e-b1b863ac34.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/@types-parse-json-npm-4.0.2-f87f65692e-b1b863ac34.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/babel-plugin-macros-npm-3.1.0-320e781f4e-c6dfb15de9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/babel-plugin-macros-npm-3.1.0-320e781f4e-c6dfb15de9.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/bind-event-listener-npm-3.0.0-c29621e676-08eadf1c7d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/bind-event-listener-npm-3.0.0-c29621e676-08eadf1c7d.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/callsites-npm-3.1.0-268f989910-fff9227740.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/callsites-npm-3.1.0-268f989910-fff9227740.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/convert-source-map-npm-1.9.0-e294555f4b-281da55454.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/convert-source-map-npm-1.9.0-e294555f4b-281da55454.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/cosmiconfig-npm-7.1.0-13a5090bcd-b923ff6af5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/cosmiconfig-npm-7.1.0-13a5090bcd-b923ff6af5.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/csstype-npm-3.1.3-e9a1c85013-80c089d6f7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/csstype-npm-3.1.3-e9a1c85013-80c089d6f7.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/debug-npm-4.4.1-6eab84b9f7-d2b44bc1af.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/debug-npm-4.4.1-6eab84b9f7-d2b44bc1af.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/error-ex-npm-1.3.2-5654f80c0f-ba827f8936.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/error-ex-npm-1.3.2-5654f80c0f-ba827f8936.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-9497d4dd30.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-9497d4dd30.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/eventemitter2-npm-4.1.2-5f5ab40d0b-32b5ca5d9d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/eventemitter2-npm-4.1.2-5f5ab40d0b-32b5ca5d9d.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/find-root-npm-1.1.0-a16a94005f-1abc7f3bf2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/find-root-npm-1.1.0-a16a94005f-1abc7f3bf2.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/function-bind-npm-1.1.2-7a55be9b03-d8680ee1e5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/function-bind-npm-1.1.2-7a55be9b03-d8680ee1e5.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/globals-npm-11.12.0-1fa7f41a6c-758f9f258e.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/globals-npm-11.12.0-1fa7f41a6c-758f9f258e.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/hasown-npm-2.0.2-80fe6c9901-3769d43470.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/hasown-npm-2.0.2-80fe6c9901-3769d43470.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/hoist-non-react-statics-npm-3.3.2-e7b709e6c1-fe0889169e.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/hoist-non-react-statics-npm-3.3.2-e7b709e6c1-fe0889169e.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/import-fresh-npm-3.3.1-1916794950-bf8cc49487.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/import-fresh-npm-3.3.1-1916794950-bf8cc49487.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/is-arrayish-npm-0.2.1-23927dfb15-e7fb686a73.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/is-arrayish-npm-0.2.1-23927dfb15-e7fb686a73.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/is-core-module-npm-2.16.1-a54837229e-898443c147.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/is-core-module-npm-2.16.1-a54837229e-898443c147.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/js-tokens-npm-4.0.0-0ac852e9e2-e248708d37.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/js-tokens-npm-4.0.0-0ac852e9e2-e248708d37.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/jsesc-npm-3.1.0-2f4f998cd7-531779df5e.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/jsesc-npm-3.1.0-2f4f998cd7-531779df5e.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/json-parse-even-better-errors-npm-2.3.1-144d62256e-140932564c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/json-parse-even-better-errors-npm-2.3.1-144d62256e-140932564c.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/lines-and-columns-npm-1.2.4-d6c7cc5799-3da6ee62d4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/lines-and-columns-npm-1.2.4-d6c7cc5799-3da6ee62d4.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/lodash.zip-npm-4.2.0-5299417ec8-e596da80a6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/lodash.zip-npm-4.2.0-5299417ec8-e596da80a6.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/loose-envify-npm-1.4.0-6307b72ccf-655d110220.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/loose-envify-npm-1.4.0-6307b72ccf-655d110220.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/ms-npm-2.1.3-81ff3cfac1-d924b57e73.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/ms-npm-2.1.3-81ff3cfac1-d924b57e73.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/object-assign-npm-4.1.1-1004ad6dec-1f4df99451.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/object-assign-npm-4.1.1-1004ad6dec-1f4df99451.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/parent-module-npm-1.0.1-1fae11b095-c63d6e8000.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/parent-module-npm-1.0.1-1fae11b095-c63d6e8000.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/parse-json-npm-5.2.0-00a63b1199-77947f2253.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/parse-json-npm-5.2.0-00a63b1199-77947f2253.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/path-parse-npm-1.0.7-09564527b7-11ce261f9d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/path-parse-npm-1.0.7-09564527b7-11ce261f9d.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/path-type-npm-4.0.0-10d47fc86a-666f6973f3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/path-type-npm-4.0.0-10d47fc86a-666f6973f3.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/picocolors-npm-1.1.1-4fede47cf1-e2e3e8170a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/picocolors-npm-1.1.1-4fede47cf1-e2e3e8170a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/prop-types-npm-15.8.1-17c71ee7ee-59ece7ca2f.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/prop-types-npm-15.8.1-17c71ee7ee-59ece7ca2f.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/raf-schd-npm-4.0.3-18f72af738-ecabf0957c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/raf-schd-npm-4.0.3-18f72af738-ecabf0957c.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/react-is-npm-16.13.1-a9b9382b4f-33977da7a5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/react-is-npm-16.13.1-a9b9382b4f-33977da7a5.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/react-uid-npm-2.4.0-54d5631b5d-5e01e8d3a4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/react-uid-npm-2.4.0-54d5631b5d-5e01e8d3a4.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/regenerator-runtime-npm-0.14.1-a6c97c609a-1b16eb2c4b.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/regenerator-runtime-npm-0.14.1-a6c97c609a-1b16eb2c4b.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/resolve-from-npm-4.0.0-f758ec21bf-8408eec31a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/resolve-from-npm-4.0.0-f758ec21bf-8408eec31a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/resolve-npm-1.22.10-d6fd9cdec7-8967e1f4e2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/resolve-npm-1.22.10-d6fd9cdec7-8967e1f4e2.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/resolve-patch-b5982cfa8c-52a4e505bb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/resolve-patch-b5982cfa8c-52a4e505bb.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/source-map-npm-0.5.7-7c3f035429-904e767bb9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/source-map-npm-0.5.7-7c3f035429-904e767bb9.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/stylis-npm-4.2.0-6b07f11c99-a7128ad5a8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/stylis-npm-4.2.0-6b07f11c99-a7128ad5a8.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/supports-preserve-symlinks-flag-npm-1.0.0-f17c4d0028-6c40323407.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/supports-preserve-symlinks-flag-npm-1.0.0-f17c4d0028-6c40323407.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/tiny-invariant-npm-1.3.3-e622f1447c-65af4a0732.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/tiny-invariant-npm-1.3.3-e622f1447c-65af4a0732.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/tslib-npm-2.8.1-66590b21b8-9c4759110a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/tslib-npm-2.8.1-66590b21b8-9c4759110a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/use-memo-one-npm-1.1.3-b9dc77468a-3d596e65a6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/use-memo-one-npm-1.1.3-b9dc77468a-3d596e65a6.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/cache/yaml-npm-1.10.2-0e780aebdf-5c28b9eb7a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/cache/yaml-npm-1.10.2-0e780aebdf-5c28b9eb7a.zip -------------------------------------------------------------------------------- /tests/unit/pnp/.yarn/releases/yarn-4.8.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarn/releases/yarn-4.8.1.cjs -------------------------------------------------------------------------------- /tests/unit/pnp/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/.yarnrc.yml -------------------------------------------------------------------------------- /tests/unit/pnp/README.md: -------------------------------------------------------------------------------- 1 | # pnp 2 | -------------------------------------------------------------------------------- /tests/unit/pnp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/package.json -------------------------------------------------------------------------------- /tests/unit/pnp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/pnp/yarn.lock -------------------------------------------------------------------------------- /tests/unit/unit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tests/unit/unit.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.lib" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/tsconfig.lib.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/vitest.setup.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/import-js/eslint-import-resolver-typescript/HEAD/yarn.lock --------------------------------------------------------------------------------