TS——取消校验的注释

1. 单行忽略 //@ts-ignore

//@ts-ignore
import AppStore from './store';

2. 忽略全文 //@ts-nocheck 需放在全文顶部

//@ts-nocheck
import {
    
     StoreProvider } from 'plume2';
import AppStore from './store';
import {
    
     BreadCrumb} from 'qmkit';
import {
    
     Button} from 'antd';

3. 忽略单行eslint校验 // eslint-disable-next-line

// eslint-disable-next-line
import AppStore from './store';

猜你喜欢

转载自blog.csdn.net/qq812457115/article/details/129087255