We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: 2.7.1
Search Terms:
Code
$ git clone https://github.com/mjbvz/ts-issue-21582
jsconfig.json src/ index.js keeper.js animals/ cat.js
With jsconfig.json:
jsconfig.json
{ "compilerOptions": { "module": "commonjs", "target": "es2016", "baseUrl": ".", "paths": { "@zoo/*": ["./src/*"] } }, "exclude": [ "node_modules", "**/node_modules/*" ] }
In src/index.js, type: import {} from '@zoo/an'
src/index.js
import {} from '@zoo/an'
Trigger path intellisense after @zoo/an
@zoo/an
Expected behavior: Returns a directory completion for animals
animals
Actual behavior: Only completions for index.js and keeper.js returned
index.js
keeper.js
Related #21590
The text was updated successfully, but these errors were encountered:
Should be fixed by #21633.
Sorry, something went wrong.
No branches or pull requests
TypeScript Version: 2.7.1
Search Terms:
Code
With
jsconfig.json
:In
src/index.js
, type:import {} from '@zoo/an'
Trigger path intellisense after
@zoo/an
Expected behavior:
Returns a directory completion for
animals
Actual behavior:
Only completions for
index.js
andkeeper.js
returnedRelated
#21590
The text was updated successfully, but these errors were encountered: