diff --git a/package.json b/package.json index b189dcf2..1c4f67a3 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,7 @@ "express-session": "^1.14.1", "mkdirp": "^0.5.1", "moment": "^2.15.1", + "office-ui-fabric-react": "^0.57.0", "option-t": "^3.0.0", "react": "^15.3.2", "react-dom": "^15.3.2", diff --git a/src/client/settings/view/ConnectSettingWindow.tsx b/src/client/settings/view/ConnectSettingWindow.tsx index 065111f2..760c41f8 100644 --- a/src/client/settings/view/ConnectSettingWindow.tsx +++ b/src/client/settings/view/ConnectSettingWindow.tsx @@ -25,6 +25,8 @@ import * as React from 'react'; +import { Button } from 'office-ui-fabric-react/lib/Button'; + import {ConnectionActionCreator} from '../intent/ConnectionSettingIntent'; import {ConnectionValue} from '../domain/value/ConnectionSettings'; import {ConnectionSettingViewModel} from '../viewmodel/ConnectionStore'; @@ -194,6 +196,7 @@ export class ConnectSettingWindow extends React.Component { disabled={isConnecting || !canConnect}> Connect + diff --git a/tsconfig.json b/tsconfig.json index 19d7f89a..08178006 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,6 +27,7 @@ "pretty": true, "preserveConstEnums": true, "removeComments": false, + "skipLibCheck": true, // Avoid the compile error with office-ui-fabric-react (#818) "sourceMap": true, "strictNullChecks": true, "suppressImplicitAnyIndexErrors": false,