如何在Nuxt 3中禁用TypeScript的代码检查?

huangapple go评论103阅读模式
英文:

How to disable typescript linting in nuxt3?

问题

在我的 nuxt3 项目中,我想要使用 jsx 来创建动态虚拟 DOM。为了实现这一目标,我按照官方文档中提供的示例进行了设置。

<script lang='tsx' setup>
    ...
</script>

通过设置 lang='tsx',还启用了 typescript linting,这让我感到很烦恼,因为我只想使用 JavaScript。

英文:

In my nuxt3 project I want to use jsx to create dynamic virtual dom. To achieve that I used
by following this example given in offical doc.

&lt;script lang=&#39;tsx&#39; setup&gt;
    ...
&lt;/script&gt;

by setting lang=&#39;tsx&#39; also enable typescript linting which is annoying as I want to use JavaScript only.

答案1

得分: 1

如果你不想使用TypeScript,只需使用 lang=jsx

英文:

If you don't want to use typescript, just use lang=jsx

huangapple
  • 本文由 发表于 2023年3月10日 00:26:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/75687413.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定