16 lines
500 B
Lua
16 lines
500 B
Lua
return {
|
|
settings = {
|
|
typescript = {
|
|
inlayHints = {
|
|
includeInlayEnumMemberValueHints = true,
|
|
includeInlayFunctionLikeReturnTypeHints = true,
|
|
includeInlayFunctionParameterTypeHints = true,
|
|
includeInlayParameterNameHints = "all", -- 'none' | 'literals' | 'all';
|
|
includeInlayParameterNameHintsWhenArgumentMatchesName = true,
|
|
includeInlayPropertyDeclarationTypeHints = true,
|
|
includeInlayVariableTypeHints = true,
|
|
},
|
|
},
|
|
},
|
|
}
|