enable noImplicitAny

This commit is contained in:
Collin M. Barrett 2019-08-05 20:54:42 -05:00
parent 71a933346a
commit b6065beeb4
3 changed files with 3 additions and 3 deletions

View file

@ -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>

View file

@ -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;

View file

@ -17,7 +17,8 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve"
"jsx": "preserve",
"noImplicitAny": true
},
"include": [
"src"