-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update web-component-analyzer dependency to fix ts5.x support (#305)
* Get lit-analyzer passing in TS 5.0 * Update vscode settings for 100 column wrapping This better matches the repo's current formatting * Update wireit * Actually fix the visit-dependencies bug with TS 5.0 * feat: update web-component-analyzer and typescript typescript 5.x removed a few deprecated methods, one of which we depended on inside WCA. That has since been fixed over in the WCA repo. This change is to now bump our dependency of WCA so we pull the fix in. Meanwhile, typescript has also been updated to match the same semver as what WCA depends on (otherwise we get type mismatches when passing `SourceFile` objects around). * Run VSCode integration tests whenever we run the main tests. * Update tested Node versions to currently LTS * Drop back to node 18 for vscode, update actions Drop old node versions for test * Drop vscode node version to node 16 for windows --------- Co-authored-by: Peter Burns <rictic@google.com>
- Loading branch information
Showing
13 changed files
with
214 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"editor.wordWrapColumn": 100, | ||
"editor.rulers": [ | ||
{ | ||
"column": 100 | ||
} | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.