最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

vue.js - Error: Unexpected token (Note that you need plugins to import files that are not JavaScript) rollup vue package - Stack

programmeradmin0浏览0评论

I wanna try to rollup a vue ponent library. But I got the error on my type checking. I try to update typescript as here has been mentioned but it didn't work. here is my code and package.json My ponent code which has been exported as a Button

 <template>
  button
    >{{ children }}</button>
</template>

<script lang="tsx">

declare type IconMode =
  | {
      iconMode?: "without-icon";
    }
  | {
      iconMode: "with-icon" | "icon-only";
      iconName: string;
    };
 ...
 </script>

and rollup.config.js is:

import monjs from "@rollup/plugin-monjs"; 
import vue from "rollup-plugin-vue"; 
import buble from "@rollup/plugin-buble"; 
import typescript from "@rollup/plugin-typescript";


export default {
  input: "src/index.ts",
  output: {
    name: "Button",
    exports: "named"
  },
  plugins: [
    typescript(),
    vue({
      css: true, 
      pileTemplate: true 
    }),
    monjs()
  ]
};

But I got this error on the terminal:

[!] Error: Unexpected token (Note that you need plugins to import files that are not JavaScript)
src/Components/Button.vue?vue&type=script&lang.tsx (18:8)

18  declare type IconMode =
            ^ 
Error: Unexpected token (Note that you need plugins to import files that are not JavaScript)

I'll be thankful if you could help me.

I wanna try to rollup a vue ponent library. But I got the error on my type checking. I try to update typescript as here has been mentioned but it didn't work. here is my code and package.json My ponent code which has been exported as a Button

 <template>
  button
    >{{ children }}</button>
</template>

<script lang="tsx">

declare type IconMode =
  | {
      iconMode?: "without-icon";
    }
  | {
      iconMode: "with-icon" | "icon-only";
      iconName: string;
    };
 ...
 </script>

and rollup.config.js is:

import monjs from "@rollup/plugin-monjs"; 
import vue from "rollup-plugin-vue"; 
import buble from "@rollup/plugin-buble"; 
import typescript from "@rollup/plugin-typescript";


export default {
  input: "src/index.ts",
  output: {
    name: "Button",
    exports: "named"
  },
  plugins: [
    typescript(),
    vue({
      css: true, 
      pileTemplate: true 
    }),
    monjs()
  ]
};

But I got this error on the terminal:

[!] Error: Unexpected token (Note that you need plugins to import files that are not JavaScript)
src/Components/Button.vue?vue&type=script&lang.tsx (18:8)

18  declare type IconMode =
            ^ 
Error: Unexpected token (Note that you need plugins to import files that are not JavaScript)

I'll be thankful if you could help me.

Share Improve this question edited Sep 2, 2021 at 7:10 Amirhosein Shirani asked Sep 2, 2021 at 5:57 Amirhosein ShiraniAmirhosein Shirani 3931 gold badge3 silver badges14 bronze badges 1
  • Please provide the plete error log. – Hemand S Commented Sep 2, 2021 at 6:07
Add a ment  | 

1 Answer 1

Reset to default 10

the problem is with the @rollup/plugin-typescript uninstall @rollup/plugin-typescript and install rollup-plugin-typescript2 instead.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论