-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
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
Improve absolute import parsing for editors by moving baseUrl #7964
Comments
I think @delasteve's answer covers the why of things right now pretty well. It's important to note that in #5875, the problem was that having I think this is overall a small QoL adjustment that any user can do to their project. I don't think it should be the default because:
|
@filipesilva can you please demonstrate why it would mess up path completion for e2e specs or multi-app setups? Also just to add more views: vscode project itself is using absolute imports over relative ones and using absolute imports is even preferred in other languages (e.g Python). Also just checked with latest vscode 1.17.0 that comes with import resolving and it didn't fallback to absolute imports automatically but let the user choose how to solve it (relative imports were even the first option after baseUrl was set). All in all I can do this change for myself and adjust it in my project but it made more sense to maybe not to have baseUrl at all in I agree that this is a small change that any user can do but without it absolute import paths won't work "out of the box" in a new app. |
Well if you change And if you have multiple apps under Your change works for your specific case because you have a single app and don't care much about the e2e folder, but that's not generalizable to all cases the CLI covers. So that would be a bad default to add. |
@filipesilva I see you reopened this issue, if it's not a mistake, I would say we could simply set I think this should cover everything, no? |
Bumped into this myself just now. Fix was to add baseUrl: './src' to tsconfig.json. It's a bit suboptimal that this is broken out of the box on vscode. Until vscode gets a feature to select tsconfig.app.json, it would be a good idea to do this in the default tsconfig.json. |
@victornoel I reopened it because I closed it by mistake. Your proposed solution still breaks for multi-app projects like I mention in my previous comment. |
ok, noted, thx for the update :) |
@filipesilva It would seem more sensible to have correct behavior for the 95% use case (users starting new apps with angular-cli). Once you go multi-app, you can find out how to change the config yourself. |
Just a heads up that we kicked off a community voting process for your feature request. There are 20 days until the voting process ends. Find more details about Angular's feature request process in our documentation. |
Thank you for submitting your feature request! Looks like during the polling process it didn't collect a sufficient number of votes to move to the next stage. We want to keep Angular rich and ergonomic and at the same time be mindful about its scope and learning journey. If you think your request could live outside Angular's scope, we'd encourage you to collaborate with the community on publishing it as an open source package. You can find more details about the feature request process in our documentation. |
Closing as I believe this is solved by #25934. If the issue still persists please open a new issue. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug Report or Feature Request (mark with an
x
)Versions.
@angular/cli: 1.4.4
node: 6.11.3
os: linux x64
@angular/animations: 4.4.4
@angular/common: 4.4.4
@angular/compiler: 4.4.4
@angular/core: 4.4.4
@angular/forms: 4.4.4
@angular/http: 4.4.4
@angular/platform-browser: 4.4.4
@angular/platform-browser-dynamic: 4.4.4
@angular/router: 4.4.4
@angular/cli: 1.4.4
@angular/compiler-cli: 4.4.4
@angular/language-service: 4.4.4
typescript: 2.3.4
Repro steps.
This improvements refers mainly to vscode/#24362 but i think it will be reproduced by other editors in the future as well. Currently the main (and only) typescript config file parsed by editors is
tsconfig.json
. Since the files./src/tsconfig.app.json
and./src/tsconfig.spec.json
both contains"baseUrl": "./"
but there is nobaseUrl
property in./tsconfig.json
which they both extend there is no way for the common editor to know what the mainbaseUrl
is and it will struggle with resolving and refactoring absolute imports (although compiling withng build
works fine).The log given by the failure.
For example just "out of the box" app after
ng new
and changing one relative import to absolute one produces :Desired functionality.
if (as I wrote here) the
baseUrl
property will be moved from./src/tsconfig.app.json
and./src/tsconfig.spec .json
files to./tsconfig.json
and it will hold there"baseUrl": "./src/"
it will solve the issue and will create better parsing for other editors in the future.Mention any other details that might be useful.
The text was updated successfully, but these errors were encountered: