Created
September 20, 2021 16:18
-
-
Save rikusen0335/3613739ed8c575afe702663943dbc73b to your computer and use it in GitHub Desktop.
VSCode (Java|Type)Script Inlay Hints
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
{ | |
"javascript.inlayHints.parameterNames.enabled": "all", | |
"typescript.inlayHints.parameterNames.enabled": "all", | |
"javascript.inlayHints.variableTypes.enabled": true, | |
"typescript.inlayHints.variableTypes.enabled": true, | |
"javascript.inlayHints.parameterTypes.enabled": true, | |
"typescript.inlayHints.parameterTypes.enabled": true, | |
"javascript.inlayHints.functionLikeReturnTypes.enabled": true, | |
"typescript.inlayHints.functionLikeReturnTypes.enabled": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment