Quick links: --- Troubleshooting --- Setup --- Configuration ---
Provide Intellisense capabilities to your Aurelia project (through the LSP) by letting you access View Model variables in your Views, rename them across your components, and many other features. For a complete list, check out the Features. The extension works out of the box on Linux/Mac/Windows, but still allows you to customize it to your projects needs.
(Defintions: Show all places where <custom-element>
component is used)
- Works out of the box, with zero configs, for any CLI generated project.
CLI |
---|
+ --- root/ | + --- src/ // Default place where the Extension tries to search | for Aurelia files | + --- tsconfig.json // (Optional) Powers all the language features | (through a Typescript Program) | + --- jsconfig.json // Same as `tsconfig.json` | + --- package.json // Determine, if given project is an Aurelia project |
Monorepo |
---|
+ --- root/ | + --- aurelia/ | + --- src/ // Default place where the Extension tries to search | for Aurelia files | + --- tsconfig.json // (Optional) Powers all the language features | (through a Typescript Program) | + --- package.json // Determine, if given project is an Aurelia project | + --- burelia/ | + (same as aurelia/) // Behaves the same as `aurelia/` | + --- non-aurelia/ // Will not get picked up | + ... |
Complex |
---|
+ --- root/ | + --- frontend/ | + --- aurelia/ | + --- src/ // Default place where the Extension tries to search | for Aurelia files | + --- tsconfig.json // (Optional) Powers all the language features | (through a Typescript Program) | + --- package.json // Determine, if given project is an Aurelia project | + --- backend/ | + --- service/ |
- Cli generate project works out of the box (
npx makes au
) - If you have a mixed JS and TS project, please add
allowJS: true
to yourtsconfig.json
- Cli generate project works out of the box (
au new
) - Less stable than Typescript, but should work still work most of the time.
- Tested with
au new
project, and legacy monorepo setup, with 131 components
- Tested with
Complex |
---|
+ --- root/ | + --- frontend/ // aureliaProject.rootDirectory = | absolute/path/root/frontend | + --- aurelia/ | + --- deeper-path/ | + --- src/ // aureliaProject.pathToAureliaFiles = | absolute/path/root/.../deeper-path/src | + --- tsconfig.json // aureliaProject.pathToTsConfig = | absolute/path/root/.../aurelia/tsconfig.json | + --- package.json // aureliaProject.packageJsonInclude = | absolute/path/root/.../frontend/package.json | + --- backend/ | + --- service/ |
You can find a more detailed list of features here. Furthermore, our tests are in a readable format and can provide much deeper insights into the extension behavior. You are encouraged to check those out:
Preview test format (expand)
The format, that is used is named [Gherkin](https://cucumber.io/docs/gherkin/)```feature
Feature: Completions - Methods.
Background:
Given the project is named "cli-generated"
And I open VSCode with the following file "view-model-test.html"
Scenario Outline: Empty brackets.
Given I'm replacing the file content with <CODE>
And I'm on the line <LINE> at character <CODE>
When I trigger Suggestions with ''
Then I should get the correct method <METHOD_NAME> with brackets
Examples:
| LINE | CODE | METHOD_NAME |
| 0 | `<div if.bind="f\|"></div>` | functionVariable |
```
(Legend below)
Feature/Region | A/AI/TI | BA | BB | CA | CE | HTML | I/R | RF | Signal | VC |
---|---|---|---|---|---|---|---|---|---|---|
Code Action | ➖ | ➖ | ➖ | ➖ | ➖ | ➕ | ➖ | ➖ | ➖ | ➖ |
Completion | ➕ | ➕ | ➖ | ➖ | ➕ | ➕ | ➕ | ➕ | ➖ | ➕ |
Definition | ➕ | ➕ | ➖ | ➖ | ➕ | ➕ | ➕ | ➕* | ➖ | ➕ |
Diagnostics | ➖ | ➖ | ➖ | ➖ | ➖ | ➕ | ➖ | ➖ | ➖ | ➖ |
Hover | ➖ | ➖ | ➖ | ➖ | ➖ | ➕ | ➖ | ➖ | ➖ | ➖ |
Rename | ➕ | ➕ | ➖ | ➖ | ➕ | ➕ | ➖ | ➕* | ➖ | ➖ |
(Document) Symbol | ➕ | ➕ | ➖ | ➖ | ➕ | ➕ | ➕ | ➕ | ➖ | ➕ |
(Workspace) Symbol | ➕ | ➕ | ➖ | ➖ | ➕ | ➕ | ➕ | ➕ | ➖ | ➕ |
Missing: Router, Promise, <let>
➕ : Supported ➕* : Partially (or unsable) supported ➖ : Not supported
A: Attribute | CA: CustomAttribute | RF: RepeatFor |
AI: AttributeInterpolation | CE: CustomElement | TI: TextInterpolation |
BA: BindableAttribute | HTML: HTML | VC: ValueConverter |
BB: BindingBehavior | I/R: Import/Require |
- Startup
- Check if given project is Aurelia project
- Go through all .js/.ts files, and check whether those are Aurelia components
- Assemble information to provide features.
- Non-aurelia projects
- Don't scan non-aurelia projects
- Don't activate when you only have non-aurelia project files open
- Will activate as soon, as you open aurelia-related file, else Troubleshooting
- Aurelia components
- Picks up Aurelia components via naming convention or
@customElement
decorator
- Picks up Aurelia components via naming convention or
You can manually install the extension by downloading the .vsix file in the top right section under "Release". Once you downloaded it, install via
code --install-extension aurelia-2.x.y.vsix
- Logs
- Open the Output panel of VSCode ("Output: Focus on Output View")
- Select "Aurelia"
- Reloading
- "Aurelia: Reload Extension"
- Should behave the same as a full VSCode reload/restart
- If nothing from above helps, submit an issue, and we kindly ask you to follow the steps in the issue template.
-
Completions
- I don't get any completions (or other any feature).
- There are cases where completions will not trigger. For a more detailed explanation visit the Completions docs
- I get undesired completions
- Unfortunately a known issue. Regardless, please open an issue to help improve the developer experience.
- Sometimes completitions don't appear
- Unfortunately a known issue. There are 2 sides
- Javascript/Typescript completions: We depend on a Typescript Program, to enable rich completions for your Views. This could be still an issue on our side, but chances are, that if some completions work, and others don't, that there is no way to improve this (to our current knowledge).
- Aurelia related completions. Likely a bug on our side.
- Unfortunately a known issue. There are 2 sides
- I don't get any completions (or other any feature).
-
Extension not working as expected
- The extension does not pick up my project
- If the other sections (Setup, Configuration) did not help please open an issue
- The extension causes my project to be slow
- We tried reduce response time as much as possible. If the extension still causes too much slowness, you can turn off individual features in the settings under
aurelia.capabilities
. Else please open an issue
- We tried reduce response time as much as possible. If the extension still causes too much slowness, you can turn off individual features in the settings under
- The extension does not work on Windows/Mac/Linux
- Windows: The extension was mainly developed on a Linux and a Mac machine. We tried to test on Windows as well, but are less confident on the stability. It would be great if you can help us improve the experience on Windows by opening an issue
- The extension does not pick up my project
Please note, that due to the low iteration count, all features may not be as stable as we like them to be. Before submitting and issue, check out the General issues, Troubleshooting and [FAQ] section. If you still haven't found a solution to your problem, you are more than welcome to open an issue. The extension is in active use by the authors, so you can expect a swift response, but do note, that an actual fix cannot be guaranteed. Regardless, we are thankful, that you took the time to troubleshoot with us!
# l.
bumb version in package.json
"version": "2.3.5"
npm i && npm run changelog
commit: chore(release): release v2.3.5
# 2.
git tag -a 2.3.5 -m "v2.3.5"
git push --follow-tags
git tag -d 2.3.5
git push --delete origin 2.3.5
Use odd minor versions
Use even minor versions
- This extension started as a clone from microsoft / vscode-extension-samples / lsp-embedded-language-service
- The "virtual completions" approach was inspired by Vetur Vetur docs