vue3 ts import时报错An import path cannot end with a ‘.ts‘ extension

typeScript导入时是不需要加入扩展名.ts的,考虑到需要编译出可以用于 <script type="module" ...> 的 JS,所以允许加 .js 扩展名

因此直接把.ts的后缀去掉就行了