mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
enable noImplicitAny
This commit is contained in:
parent
71a933346a
commit
b6065beeb4
3 changed files with 3 additions and 3 deletions
|
|
@ -27,7 +27,7 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
<Table<List>
|
||||
dataSource={this.state.data}
|
||||
rowKey={record => record.id.toString()}
|
||||
loading={this.state.data.length == 0 ? true : false}
|
||||
loading={this.state.data.length === 0 ? true : false}
|
||||
size="middle"
|
||||
pagination={{ position: "top", size: "small" }} >
|
||||
<Table.Column<List>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { Button } from 'antd';
|
||||
import { ButtonProps, ButtonType } from "antd/lib/button";
|
||||
import * as React from "react";
|
||||
import { JSXElement } from '@babel/types';
|
||||
|
||||
interface Props {
|
||||
name: string;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@
|
|||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "preserve"
|
||||
"jsx": "preserve",
|
||||
"noImplicitAny": true
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
|
|
|
|||
Loading…
Reference in a new issue