vsc-base
vsc-base copied to clipboard
feat(vsc-organize-imports): Support for Vue files
I'd love support for Vue files! for vsc-organize-imports
The functionality behind this extension uses typescript and its js flow analytics. I dont know much about Vue. Is't it just ts/js files ? (That should work already) Or does it use some other extension like .vue ? (That can be fix easily if its only the extension thats the problem)
@alfnielsen Yes, a Vue file has a .vue extension and has 3 tags:
<template></template>
<style></style>
<script></script>
The script in a Vue file can be either lang="js" or lang="ts" and that's where all the js/ts imports are made as well.