vue2 ant design ts 关闭ts语法检查
时间: 2023-09-08 09:10:22 浏览: 208
Vue3 Ant Design Vue后台系统模板.zip
如果你想关闭在 Vue2 Ant Design 中的 TypeScript 语法检查,可以在 `tsconfig.json` 文件中添加以下内容:
```json
{
"compilerOptions": {
// ...其他选项...
"noImplicitAny": false,
"allowJs": true,
"checkJs": false
}
}
```
这样设置之后,TypeScript 将不会对 JavaScript 文件进行语法检查。同时,还需要确保你在 Vue 文件中使用了正确的语言模式声明,例如:
```html
<template lang="pug">
// ...
</template>
<script lang="ts">
// ...
</script>
```
如果你不想在文件中使用 TypeScript,可以将 `lang` 属性设置为 JavaScript。例如:
```html
<template lang="pug">
// ...
</template>
<script lang="js">
// ...
</script>
```
这样设置之后,TypeScript 将不会对当前文件进行语法检查。
阅读全文