-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes language-tools test failure. Closes vuejs/language-tools#3759 This is because according to TypeScript documentation, > Packages in `node_modules/@types` of any enclosing folder are considered *visible*. So we can't have `@types` in the root `node_modules` folder, otherwise ecosystem projects in the `workspace` folder will be able to see them, and that might affect the type checking result.
- Loading branch information
1 parent
156d2e4
commit af22599
Showing
5 changed files
with
33 additions
and
9 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
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "typings", | ||
"version": "0.0.0", | ||
"private": true, | ||
"description": "Alternative typing root directory for the project in order not to pollute the root node_modules", | ||
"devDependencies": { | ||
"@types/node": "^18.18.14" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.