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

VSCode integration for svelte-type-checker

Results 8 svelte-type-checker-vscode issues
Sort by recently updated
recently updated
newest added

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 Commits d7fbc52 Bump to v4.17.19 2e1c0f2 Add npm-package 1b6c282 Bump to v4.17.18 a370ac8 Bump to v4.17.17 1144918...

dependencies

I configured my project to resolve `.svelte` files automatically, so importing components looks like: ```js import ObjectView from "../components/ObjectView"; ``` Each of these imports generates a `Cannot find module xxx`...

#await then doesn't seem to be supported Example code: ``` {#await foo()} ..... {:then} async function completed successfully! {:catch err} async function failed:( {/await} ``` {:then} will be showed with...

All the imported **.svelte** files are shown with this error. I have tried adding: ``` "types": [ "svelte" ] ``` to the **tsconfig** file to no avail.

I have a type warning under `tabindex` in the following standard HTML code (in a .svelte file): > Type 'string' is not assignable to type 'number'. svelte-type-checker(2322) ``` ``` Now,...

In my Svelte component (code below) I have the following warning from this addon: > JSX elements cannot have multiple attributes with the same name. svelte-type-checker(17001) However my code appears...

Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 2.2.1 to 2.2.4. Release notes Sourced from https-proxy-agent's releases. 2.2.4 Patches Add .editorconfig file: a0d4a20458498fc31e5721471bd2b655e992d44b Add .eslintrc.js file: eecea74a1db1c943eaa4f667a561fd47c33da897 Use a net.Socket instead of a plain EventEmitter...

dependencies

> 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...