We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 ''
src/index.js
import {} from ''
Trigger path intellisense inside the import
Expected behavior: Returns completions include one for @zoo from the paths compiler option.
@zoo
paths
Actual behavior: No such completion returned
Related #21590
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TypeScript Version: 2.7.1
Search Terms:
Code
With
jsconfig.json
:In
src/index.js
, type:import {} from ''
Trigger path intellisense inside the import
Expected behavior:
Returns completions include one for
@zoo
from thepaths
compiler option.Actual behavior:
No such completion returned
Related
#21590
The text was updated successfully, but these errors were encountered: