svelte-type-checker-vscode icon indicating copy to clipboard operation
svelte-type-checker-vscode copied to clipboard

Interaction with Svelte plugin

Open justinmoon opened this issue 5 years ago • 1 comments

For best results, disable the typescript complete, hover, and definition features of the Svelte plugin and enable all the settings of this plugin.

Would be nice if README provided the JSON to achieve this.

Edit: Seems like these value work?

    // hover
    "svelte.plugin.typescript.hover.enable": false,
    "svelte-type-checker.enableHoverHints": true,

    // definitions
    "svelte.plugin.typescript.definitions.enable": false,
    "svelte-type-checker.enableDefinitions": true,

    // completions
    "svelte.plugin.typescript.completions.enable": false,
    "svelte-type-checker.enableCompletion": true,

justinmoon avatar Apr 15 '20 22:04 justinmoon

Thanks, I am happy to take a PR for the Readme if those work. I just assumed people would use the settings menu in vscode and untick the checkboxes

halfnelson avatar Apr 16 '20 10:04 halfnelson