Skip to content

Instantly share code, notes, and snippets.

@Pajn
Created April 5, 2017 16:47
Show Gist options
  • Save Pajn/706265d7f61e89bab5b3bcfe93ce068d to your computer and use it in GitHub Desktop.
Save Pajn/706265d7f61e89bab5b3bcfe93ce068d to your computer and use it in GitHub Desktop.
Info 0 Binding...
Info 1 request: {"seq":0,"type":"request","command":"configure","arguments":{"hostInfo":"vscode"}}
Info 2 Host information vscode
Info 3 response: {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 4 0::configure: async elapsed time (in milliseconds) 3.4801
Info 5 request: {"seq":1,"type":"request","command":"compilerOptionsForInferredProjects","arguments":{"options":{"module":"CommonJS","target":"ES6","allowSyntheticDefaultImports":true,"allowNonTsExtensions":true,"allowJs":true,"jsx":"Preserve"}}}
Perf 6 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 1.3286
Info 7 response: {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 8 request: {"seq":2,"type":"request","command":"getSupportedCodeFixes","arguments":null}
Perf 9 2::getSupportedCodeFixes: elapsed time (in milliseconds) 0.4536
Info 10 response: {"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":2,"success":true,"body":["2304","2339","2377","2420","2503","2515","2653","2663","2686","2689","6133","6138","17009"]}
Info 11 request: {"seq":3,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","fileContent":"import {isClick} from 'filter-key'\nimport Flexbox from 'flexbox-react'\nimport * as React from 'react'\nimport {CSSProperties} from 'react'\nimport {List as ToolboxList, ListItem as ToolboxListItem} from 'react-toolbox/lib/list'\nimport compose from 'recompose/compose'\nimport styled from 'styled-components'\nimport {materialColors} from 'styled-material/dist/src/colors'\nimport {IsTouchProps, withIsTouch} from './mediaQueries'\n\nconst DesktopList: React.ComponentClass<any> = styled<any>(Flexbox)`\n flex-direction: column;\n padding: 8px;\n`\n\nconst DesktopListItem: React.ComponentClass<any> = styled<any>(Flexbox)`\n box-sizing: border-box;\n padding: 8px 4px;\n height: ${({isMobile}) => isMobile ? 48 : 32}px;\n outline: none;\n\n ${({selected}) => selected\n ? `background-color: ${materialColors['grey-200']};`\n : `\n &:hover,\n &:focus {\n background-color: ${materialColors['grey-100']};\n }\n `\n }\n`\n\nconst Container = ({isMobile, style, children}: {isMobile: boolean, style?: CSSProperties, children?}) =>\n isMobile\n ? <ToolboxList style={style}>\n {children}\n </ToolboxList>\n : <DesktopList style={style}>\n {children}\n </DesktopList>\n\nexport type ListItemProps = {\n caption: string\n legend?: string\n onClick?: (e: React.MouseEvent<any>) => void\n style?: CSSProperties\n isTouch?: boolean\n selected?: boolean\n selectable?: boolean\n}\n\nexport const ListItem = ({caption, legend, isTouch, selectable, ...props}: ListItemProps) =>\n isTouch\n ? <ToolboxListItem\n {...props}\n caption={caption}\n legend={legend}\n />\n : <DesktopListItem {...props}\n role={selectable && 'button'}\n tabIndex={selectable && 0}\n onKeyPress={selectable && props.onClick && isClick(props.onClick)}\n >\n <div>{caption}</div>\n {legend && <div>{legend}</div>}\n </DesktopListItem>\n\nexport type ListProps = {\n width?: number\n selectable?: boolean\n}\nexport type PrivateListProps = ListProps & IsTouchProps & {\n children: any\n}\n\nexport const enhance = compose(\n withIsTouch,\n)\n\nexport const ListView = ({isTouch, width = 250, selectable, children}: PrivateListProps) =>\n <Container isMobile={isTouch} style={isTouch ? {} : {width}}>\n {React.Children.map(children, child => {\n if (!child) return child\n const c = child as React.ReactElement<any>\n if (c.type === ListItem) {\n return React.cloneElement(c, {\n isTouch,\n selectable: c.props.selectable === undefined\n ? selectable\n : c.props.selectable\n })\n }\n return child\n })}\n </Container>\n\nexport const List: React.ComponentClass<ListProps> = enhance(ListView)\n","scriptKindName":"TSX"}}
Info 12 Search path: /home/rasmus/Development/RAXA/packages/web/src/components/ui
Info 13 Config file name: /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 14 No plugins exist
Info 15 Add recursive watcher for: /home/rasmus/Development/RAXA/packages/web
Info 16 Add recursive watcher for: /home/rasmus/Development/RAXA/packages/web/src
Info 17 Add recursive watcher for: /home/rasmus/Development/RAXA/packages/web/typings
Info 18 Add type root watcher for: /home/rasmus/Development/RAXA/packages/web/node_modules/@types
Info 19 Add type root watcher for: /home/rasmus/Development/RAXA/node_modules/@types
Info 20 Opened configuration file /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 21 Project '/home/rasmus/Development/RAXA/packages/web/tsconfig.json' (Configured) 0
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es5.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.dom.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/redux/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/source.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/ast.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/definition.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/directives.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/schema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/location.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/kinds.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/lexer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/parser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/printer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/visitor.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/GraphQLError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/syntaxError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/locatedError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/formatError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/execute.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/scalars.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/introspection.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/TypeInfo.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/specifiedRules.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/validate.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/introspectionQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/getOperationAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildClientSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildASTSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/extendSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/schemaPrinter.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/valueFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/astFromValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidJSValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidLiteralValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/concatAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/separateOperations.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeComparators.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/assertValidName.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findBreakingChanges.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findDeprecatedUsages.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/afterware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/batchedNetworkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/middleware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/networkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/utilities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/storeUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/mutationResults.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/readFromStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/fragmentMatcher.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/proxy.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/networkStatus.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/types.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/watchQueryOptions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/actions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/mutations/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/optimistic-data/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/util/Observable.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/ApolloClient.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/QueryManager.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/scheduler/scheduler.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/errors/ApolloError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/ObservableQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/writeToStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/queryTransform.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/ApolloProvider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/node_modules/graphql-tag/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/browser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/server.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/entities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/List.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListCheckbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListDivider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemContent.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemAction.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemActions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemLayout.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItem.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemText.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListSubHeader.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/typography.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/default-interfaces.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/errors.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/helpers.d.ts
/home/rasmus/Development/RAXA/packages/common/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/state.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/actions.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/log.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/service.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/plugin.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/Checkbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/Input.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/Slider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/base.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/Button.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/IconButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/BrowseButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/dialog/Dialog.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/dialog-input.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-with-media/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-input.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/property.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/status.tsx
/home/rasmus/Development/key-activate/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/flexbox-react/dist/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-components/typings/styled-components.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/colors.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/section.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/two-pane.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/with-push-state.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list-detail.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/validation.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context-actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-form.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/settings/devices.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/app_bar/AppBar.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/navigation/Navigation.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/scaffold.tsx
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/reducer.tsx
/home/rasmus/Development/RAXA/packages/web/src/lib/store.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/snackbar/Snackbar.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/redux-snackbar.tsx
/home/rasmus/Development/RAXA/packages/web/src/toolbox/theme.js
/home/rasmus/Development/RAXA/packages/web/src/app.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/index.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
/home/rasmus/Development/RAXA/packages/web/typings/assets.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/async/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/isomorphic-fetch/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/jest/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/node/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/ramda/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/recompose/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/source-map/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/tapable/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/uglify-js/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/webpack/index.d.ts
-----------------------------------------------
Open files:
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
Info 22 event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","configFile":"/home/rasmus/Development/RAXA/packages/web/tsconfig.json","diagnostics":[]}}
Perf 23 3::open: async elapsed time (in milliseconds) 3106.6782
Info 24 request: {"seq":4,"type":"request","command":"getSupportedCodeFixes","arguments":null}
Perf 25 4::getSupportedCodeFixes: elapsed time (in milliseconds) 0.6072
Info 26 response: {"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":4,"success":true,"body":["2304","2339","2377","2420","2503","2515","2653","2663","2686","2689","6133","6138","17009"]}
Info 27 request: {"seq":5,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx"]}}
Perf 28 5::geterr: async elapsed time (in milliseconds) 1.7586
Info 29 request: {"seq":6,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":23,"offset":30}}
Perf 30 6::quickinfo: elapsed time (in milliseconds) 21.9558
Info 31 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":6,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":23,"offset":28},"end":{"line":23,"offset":42},"displayString":"import materialColors","documentation":""}}
Info 32 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 33 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 34 event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}}
Info 35 request: {"seq":7,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":16,"offset":55}}
Perf 36 7::quickinfo: elapsed time (in milliseconds) 12.9000
Info 37 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":7,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":16,"offset":52},"end":{"line":16,"offset":58},"displayString":"(alias) styled<any>(component: React.ComponentClass<any> | React.StatelessComponent<any>): ThemedStyledFunction<any, any>\nimport styled","documentation":""}}
Info 38 request: {"seq":8,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":24}}
Perf 39 8::quickinfo: elapsed time (in milliseconds) 1.4438
Info 40 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":8,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":9,"offset":23},"end":{"line":9,"offset":34},"displayString":"import withIsTouch","documentation":""}}
Info 41 request: {"seq":9,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":23}}
Perf 42 9::definition: elapsed time (in milliseconds) 3.2661
Info 43 response: {"seq":0,"type":"response","command":"definition","request_seq":9,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","start":{"line":13,"offset":14},"end":{"line":13,"offset":25}}]}
Info 44 request: {"seq":10,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","fileContent":"import {withMedia} from 'react-with-media'\n\nexport type IsMobileProps = {\n isMobile: boolean\n}\n\nexport const withIsMobile = withMedia('(max-width: 700px)', {name: 'isMobile'})\n\nexport type IsTouchProps = {\n isTouch: boolean\n}\n\nexport const withIsTouch = withMedia('(max-width: 700px)', {name: 'isTouch'})\n","scriptKindName":"TSX"}}
Info 45 Search path: /home/rasmus/Development/RAXA/packages/web/src/components/ui
Info 46 Config file name: /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 47 Project '/home/rasmus/Development/RAXA/packages/web/tsconfig.json' (Configured) 0
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es5.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.dom.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/redux/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/source.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/ast.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/definition.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/directives.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/schema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/location.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/kinds.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/lexer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/parser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/printer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/visitor.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/GraphQLError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/syntaxError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/locatedError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/formatError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/execute.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/scalars.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/introspection.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/TypeInfo.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/specifiedRules.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/validate.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/introspectionQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/getOperationAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildClientSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildASTSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/extendSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/schemaPrinter.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/valueFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/astFromValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidJSValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidLiteralValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/concatAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/separateOperations.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeComparators.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/assertValidName.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findBreakingChanges.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findDeprecatedUsages.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/afterware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/batchedNetworkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/middleware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/networkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/utilities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/storeUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/mutationResults.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/readFromStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/fragmentMatcher.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/proxy.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/networkStatus.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/types.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/watchQueryOptions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/actions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/mutations/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/optimistic-data/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/util/Observable.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/ApolloClient.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/QueryManager.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/scheduler/scheduler.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/errors/ApolloError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/ObservableQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/writeToStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/queryTransform.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/ApolloProvider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/node_modules/graphql-tag/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/browser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/server.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/entities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/List.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListCheckbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListDivider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemContent.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemAction.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemActions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemLayout.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItem.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemText.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListSubHeader.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/typography.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/default-interfaces.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/errors.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/helpers.d.ts
/home/rasmus/Development/RAXA/packages/common/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/state.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/actions.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/log.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/service.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/plugin.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/Checkbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/Input.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/Slider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/base.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/Button.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/IconButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/BrowseButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/dialog/Dialog.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/dialog-input.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-with-media/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-input.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/property.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/status.tsx
/home/rasmus/Development/key-activate/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/flexbox-react/dist/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-components/typings/styled-components.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/colors.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/section.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/two-pane.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/with-push-state.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list-detail.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/validation.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context-actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-form.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/settings/devices.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/app_bar/AppBar.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/navigation/Navigation.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/scaffold.tsx
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/reducer.tsx
/home/rasmus/Development/RAXA/packages/web/src/lib/store.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/snackbar/Snackbar.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/redux-snackbar.tsx
/home/rasmus/Development/RAXA/packages/web/src/toolbox/theme.js
/home/rasmus/Development/RAXA/packages/web/src/app.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/index.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
/home/rasmus/Development/RAXA/packages/web/typings/assets.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/async/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/isomorphic-fetch/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/jest/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/node/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/ramda/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/recompose/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/source-map/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/tapable/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/uglify-js/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/webpack/index.d.ts
-----------------------------------------------
Open files:
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
Info 48 event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","configFile":"/home/rasmus/Development/RAXA/packages/web/tsconfig.json","diagnostics":[]}}
Perf 49 10::open: async elapsed time (in milliseconds) 84.1802
Info 50 request: {"seq":11,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":23}}
Perf 51 11::quickinfo: elapsed time (in milliseconds) 0.6694
Info 52 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":11,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":9,"offset":23},"end":{"line":9,"offset":34},"displayString":"import withIsTouch","documentation":""}}
Info 53 request: {"seq":12,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":20}}
Perf 54 12::definition: elapsed time (in milliseconds) 2.1131
Info 55 response: {"seq":0,"type":"response","command":"definition","request_seq":12,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","start":{"line":9,"offset":13},"end":{"line":9,"offset":25}}]}
Info 56 request: {"seq":13,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx"]}}
Perf 57 13::geterr: async elapsed time (in milliseconds) 0.5117
Info 58 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 59 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 60 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 61 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 62 event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":13}}
Info 63 request: {"seq":14,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":14}}
Perf 64 14::quickinfo: elapsed time (in milliseconds) 0.6341
Info 65 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":14,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":9,"offset":9},"end":{"line":9,"offset":21},"displayString":"import IsTouchProps","documentation":""}}
Info 66 request: {"seq":15,"type":"request","command":"occurrences","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":14}}
Perf 67 15::occurrences: elapsed time (in milliseconds) 10.6469
Info 68 response: {"seq":0,"type":"response","command":"occurrences","request_seq":15,"success":true,"body":[{"start":{"line":9,"offset":9},"end":{"line":9,"offset":21},"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","isWriteAccess":true},{"start":{"line":72,"offset":44},"end":{"line":72,"offset":56},"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","isWriteAccess":false}]}
Info 69 request: {"seq":16,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":14}}
Perf 70 16::definition: elapsed time (in milliseconds) 0.5845
Info 71 response: {"seq":0,"type":"response","command":"definition","request_seq":16,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","start":{"line":9,"offset":13},"end":{"line":9,"offset":25}}]}
Info 72 request: {"seq":17,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","line":9,"offset":14}}
Perf 73 17::quickinfo: elapsed time (in milliseconds) 1.7869
Info 74 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":17,"success":true,"body":{"kind":"type","kindModifiers":"export","start":{"line":9,"offset":13},"end":{"line":9,"offset":25},"displayString":"type IsTouchProps = {\n isTouch: boolean;\n}","documentation":""}}
Info 75 request: {"seq":18,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","fileContent":"import * as React from 'react'\nimport {Route} from 'react-router'\nimport compose from 'recompose/compose'\nimport {SectionProps} from './section'\n\nexport type RouteSectionProps = SectionProps & {\n url: string\n}\nexport type PrivateRouteSectionProps = RouteSectionProps & {}\n\nexport const enhance = compose()\n\nexport const RouteSectionView = ({url}: PrivateRouteSectionProps) =>\n <Route path={url} />\n\nexport const RouteSection = enhance(RouteSectionView) as React.ComponentClass<RouteSectionProps>\n","scriptKindName":"TSX"}}
Info 76 Search path: /home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold
Info 77 Config file name: /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 78 Project '/home/rasmus/Development/RAXA/packages/web/tsconfig.json' (Configured) 0
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es5.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.dom.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/redux/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/source.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/ast.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/definition.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/directives.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/schema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/location.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/kinds.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/lexer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/parser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/printer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/visitor.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/GraphQLError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/syntaxError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/locatedError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/formatError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/execute.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/scalars.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/introspection.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/TypeInfo.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/specifiedRules.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/validate.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/introspectionQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/getOperationAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildClientSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildASTSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/extendSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/schemaPrinter.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/valueFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/astFromValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidJSValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidLiteralValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/concatAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/separateOperations.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeComparators.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/assertValidName.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findBreakingChanges.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findDeprecatedUsages.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/afterware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/batchedNetworkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/middleware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/networkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/utilities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/storeUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/mutationResults.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/readFromStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/fragmentMatcher.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/proxy.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/networkStatus.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/types.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/watchQueryOptions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/actions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/mutations/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/optimistic-data/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/util/Observable.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/ApolloClient.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/QueryManager.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/scheduler/scheduler.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/errors/ApolloError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/ObservableQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/writeToStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/queryTransform.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/ApolloProvider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/node_modules/graphql-tag/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/browser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/server.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/entities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/List.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListCheckbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListDivider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemContent.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemAction.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemActions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemLayout.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItem.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemText.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListSubHeader.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/typography.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/default-interfaces.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/errors.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/helpers.d.ts
/home/rasmus/Development/RAXA/packages/common/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/state.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/actions.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/log.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/service.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/plugin.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/Checkbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/Input.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/Slider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/base.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/Button.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/IconButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/BrowseButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/dialog/Dialog.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/dialog-input.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-with-media/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-input.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/property.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/status.tsx
/home/rasmus/Development/key-activate/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/flexbox-react/dist/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-components/typings/styled-components.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/colors.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/section.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/two-pane.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/with-push-state.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list-detail.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/validation.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context-actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-form.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/settings/devices.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/app_bar/AppBar.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/navigation/Navigation.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/scaffold.tsx
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/reducer.tsx
/home/rasmus/Development/RAXA/packages/web/src/lib/store.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/snackbar/Snackbar.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/redux-snackbar.tsx
/home/rasmus/Development/RAXA/packages/web/src/toolbox/theme.js
/home/rasmus/Development/RAXA/packages/web/src/app.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/index.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
/home/rasmus/Development/RAXA/packages/web/typings/assets.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/async/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/isomorphic-fetch/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/jest/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/node/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/ramda/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/recompose/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/source-map/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/tapable/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/uglify-js/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/webpack/index.d.ts
-----------------------------------------------
Open files:
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
Info 79 event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","configFile":"/home/rasmus/Development/RAXA/packages/web/tsconfig.json","diagnostics":[]}}
Perf 80 18::open: async elapsed time (in milliseconds) 140.5367
Info 81 request: {"seq":19,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx"]}}
Perf 82 19::geterr: async elapsed time (in milliseconds) 0.3770
Info 83 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","diagnostics":[]}}
Info 84 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","diagnostics":[]}}
Info 85 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 86 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 87 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 88 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 89 event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":19}}
~/Development/RAXA master*
❯ cat ~/tsserver.log
Info 0 Binding...
Info 1 request: {"seq":0,"type":"request","command":"configure","arguments":{"hostInfo":"vscode"}}
Info 2 Host information vscode
Info 3 response: {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 4 0::configure: async elapsed time (in milliseconds) 3.4801
Info 5 request: {"seq":1,"type":"request","command":"compilerOptionsForInferredProjects","arguments":{"options":{"module":"CommonJS","target":"ES6","allowSyntheticDefaultImports":true,"allowNonTsExtensions":true,"allowJs":true,"jsx":"Preserve"}}}
Perf 6 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 1.3286
Info 7 response: {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 8 request: {"seq":2,"type":"request","command":"getSupportedCodeFixes","arguments":null}
Perf 9 2::getSupportedCodeFixes: elapsed time (in milliseconds) 0.4536
Info 10 response: {"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":2,"success":true,"body":["2304","2339","2377","2420","2503","2515","2653","2663","2686","2689","6133","6138","17009"]}
Info 11 request: {"seq":3,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","fileContent":"import {isClick} from 'filter-key'\nimport Flexbox from 'flexbox-react'\nimport * as React from 'react'\nimport {CSSProperties} from 'react'\nimport {List as ToolboxList, ListItem as ToolboxListItem} from 'react-toolbox/lib/list'\nimport compose from 'recompose/compose'\nimport styled from 'styled-components'\nimport {materialColors} from 'styled-material/dist/src/colors'\nimport {IsTouchProps, withIsTouch} from './mediaQueries'\n\nconst DesktopList: React.ComponentClass<any> = styled<any>(Flexbox)`\n flex-direction: column;\n padding: 8px;\n`\n\nconst DesktopListItem: React.ComponentClass<any> = styled<any>(Flexbox)`\n box-sizing: border-box;\n padding: 8px 4px;\n height: ${({isMobile}) => isMobile ? 48 : 32}px;\n outline: none;\n\n ${({selected}) => selected\n ? `background-color: ${materialColors['grey-200']};`\n : `\n &:hover,\n &:focus {\n background-color: ${materialColors['grey-100']};\n }\n `\n }\n`\n\nconst Container = ({isMobile, style, children}: {isMobile: boolean, style?: CSSProperties, children?}) =>\n isMobile\n ? <ToolboxList style={style}>\n {children}\n </ToolboxList>\n : <DesktopList style={style}>\n {children}\n </DesktopList>\n\nexport type ListItemProps = {\n caption: string\n legend?: string\n onClick?: (e: React.MouseEvent<any>) => void\n style?: CSSProperties\n isTouch?: boolean\n selected?: boolean\n selectable?: boolean\n}\n\nexport const ListItem = ({caption, legend, isTouch, selectable, ...props}: ListItemProps) =>\n isTouch\n ? <ToolboxListItem\n {...props}\n caption={caption}\n legend={legend}\n />\n : <DesktopListItem {...props}\n role={selectable && 'button'}\n tabIndex={selectable && 0}\n onKeyPress={selectable && props.onClick && isClick(props.onClick)}\n >\n <div>{caption}</div>\n {legend && <div>{legend}</div>}\n </DesktopListItem>\n\nexport type ListProps = {\n width?: number\n selectable?: boolean\n}\nexport type PrivateListProps = ListProps & IsTouchProps & {\n children: any\n}\n\nexport const enhance = compose(\n withIsTouch,\n)\n\nexport const ListView = ({isTouch, width = 250, selectable, children}: PrivateListProps) =>\n <Container isMobile={isTouch} style={isTouch ? {} : {width}}>\n {React.Children.map(children, child => {\n if (!child) return child\n const c = child as React.ReactElement<any>\n if (c.type === ListItem) {\n return React.cloneElement(c, {\n isTouch,\n selectable: c.props.selectable === undefined\n ? selectable\n : c.props.selectable\n })\n }\n return child\n })}\n </Container>\n\nexport const List: React.ComponentClass<ListProps> = enhance(ListView)\n","scriptKindName":"TSX"}}
Info 12 Search path: /home/rasmus/Development/RAXA/packages/web/src/components/ui
Info 13 Config file name: /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 14 No plugins exist
Info 15 Add recursive watcher for: /home/rasmus/Development/RAXA/packages/web
Info 16 Add recursive watcher for: /home/rasmus/Development/RAXA/packages/web/src
Info 17 Add recursive watcher for: /home/rasmus/Development/RAXA/packages/web/typings
Info 18 Add type root watcher for: /home/rasmus/Development/RAXA/packages/web/node_modules/@types
Info 19 Add type root watcher for: /home/rasmus/Development/RAXA/node_modules/@types
Info 20 Opened configuration file /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 21 Project '/home/rasmus/Development/RAXA/packages/web/tsconfig.json' (Configured) 0
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es5.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.dom.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/redux/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/source.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/ast.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/definition.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/directives.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/schema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/location.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/kinds.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/lexer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/parser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/printer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/visitor.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/GraphQLError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/syntaxError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/locatedError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/formatError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/execute.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/scalars.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/introspection.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/TypeInfo.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/specifiedRules.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/validate.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/introspectionQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/getOperationAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildClientSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildASTSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/extendSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/schemaPrinter.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/valueFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/astFromValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidJSValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidLiteralValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/concatAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/separateOperations.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeComparators.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/assertValidName.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findBreakingChanges.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findDeprecatedUsages.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/afterware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/batchedNetworkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/middleware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/networkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/utilities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/storeUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/mutationResults.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/readFromStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/fragmentMatcher.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/proxy.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/networkStatus.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/types.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/watchQueryOptions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/actions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/mutations/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/optimistic-data/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/util/Observable.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/ApolloClient.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/QueryManager.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/scheduler/scheduler.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/errors/ApolloError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/ObservableQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/writeToStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/queryTransform.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/ApolloProvider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/node_modules/graphql-tag/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/browser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/server.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/entities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/List.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListCheckbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListDivider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemContent.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemAction.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemActions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemLayout.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItem.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemText.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListSubHeader.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/typography.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/default-interfaces.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/errors.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/helpers.d.ts
/home/rasmus/Development/RAXA/packages/common/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/state.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/actions.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/log.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/service.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/plugin.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/Checkbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/Input.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/Slider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/base.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/Button.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/IconButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/BrowseButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/dialog/Dialog.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/dialog-input.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-with-media/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-input.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/property.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/status.tsx
/home/rasmus/Development/key-activate/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/flexbox-react/dist/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-components/typings/styled-components.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/colors.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/section.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/two-pane.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/with-push-state.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list-detail.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/validation.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context-actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-form.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/settings/devices.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/app_bar/AppBar.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/navigation/Navigation.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/scaffold.tsx
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/reducer.tsx
/home/rasmus/Development/RAXA/packages/web/src/lib/store.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/snackbar/Snackbar.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/redux-snackbar.tsx
/home/rasmus/Development/RAXA/packages/web/src/toolbox/theme.js
/home/rasmus/Development/RAXA/packages/web/src/app.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/index.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
/home/rasmus/Development/RAXA/packages/web/typings/assets.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/async/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/isomorphic-fetch/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/jest/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/node/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/ramda/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/recompose/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/source-map/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/tapable/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/uglify-js/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/webpack/index.d.ts
-----------------------------------------------
Open files:
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
Info 22 event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","configFile":"/home/rasmus/Development/RAXA/packages/web/tsconfig.json","diagnostics":[]}}
Perf 23 3::open: async elapsed time (in milliseconds) 3106.6782
Info 24 request: {"seq":4,"type":"request","command":"getSupportedCodeFixes","arguments":null}
Perf 25 4::getSupportedCodeFixes: elapsed time (in milliseconds) 0.6072
Info 26 response: {"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":4,"success":true,"body":["2304","2339","2377","2420","2503","2515","2653","2663","2686","2689","6133","6138","17009"]}
Info 27 request: {"seq":5,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx"]}}
Perf 28 5::geterr: async elapsed time (in milliseconds) 1.7586
Info 29 request: {"seq":6,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":23,"offset":30}}
Perf 30 6::quickinfo: elapsed time (in milliseconds) 21.9558
Info 31 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":6,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":23,"offset":28},"end":{"line":23,"offset":42},"displayString":"import materialColors","documentation":""}}
Info 32 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 33 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 34 event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}}
Info 35 request: {"seq":7,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":16,"offset":55}}
Perf 36 7::quickinfo: elapsed time (in milliseconds) 12.9000
Info 37 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":7,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":16,"offset":52},"end":{"line":16,"offset":58},"displayString":"(alias) styled<any>(component: React.ComponentClass<any> | React.StatelessComponent<any>): ThemedStyledFunction<any, any>\nimport styled","documentation":""}}
Info 38 request: {"seq":8,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":24}}
Perf 39 8::quickinfo: elapsed time (in milliseconds) 1.4438
Info 40 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":8,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":9,"offset":23},"end":{"line":9,"offset":34},"displayString":"import withIsTouch","documentation":""}}
Info 41 request: {"seq":9,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":23}}
Perf 42 9::definition: elapsed time (in milliseconds) 3.2661
Info 43 response: {"seq":0,"type":"response","command":"definition","request_seq":9,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","start":{"line":13,"offset":14},"end":{"line":13,"offset":25}}]}
Info 44 request: {"seq":10,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","fileContent":"import {withMedia} from 'react-with-media'\n\nexport type IsMobileProps = {\n isMobile: boolean\n}\n\nexport const withIsMobile = withMedia('(max-width: 700px)', {name: 'isMobile'})\n\nexport type IsTouchProps = {\n isTouch: boolean\n}\n\nexport const withIsTouch = withMedia('(max-width: 700px)', {name: 'isTouch'})\n","scriptKindName":"TSX"}}
Info 45 Search path: /home/rasmus/Development/RAXA/packages/web/src/components/ui
Info 46 Config file name: /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 47 Project '/home/rasmus/Development/RAXA/packages/web/tsconfig.json' (Configured) 0
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es5.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.dom.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/redux/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/source.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/ast.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/definition.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/directives.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/schema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/location.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/kinds.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/lexer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/parser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/printer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/visitor.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/GraphQLError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/syntaxError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/locatedError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/formatError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/execute.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/scalars.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/introspection.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/TypeInfo.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/specifiedRules.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/validate.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/introspectionQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/getOperationAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildClientSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildASTSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/extendSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/schemaPrinter.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/valueFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/astFromValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidJSValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidLiteralValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/concatAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/separateOperations.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeComparators.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/assertValidName.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findBreakingChanges.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findDeprecatedUsages.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/afterware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/batchedNetworkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/middleware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/networkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/utilities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/storeUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/mutationResults.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/readFromStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/fragmentMatcher.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/proxy.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/networkStatus.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/types.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/watchQueryOptions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/actions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/mutations/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/optimistic-data/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/util/Observable.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/ApolloClient.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/QueryManager.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/scheduler/scheduler.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/errors/ApolloError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/ObservableQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/writeToStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/queryTransform.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/ApolloProvider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/node_modules/graphql-tag/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/browser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/server.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/entities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/List.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListCheckbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListDivider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemContent.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemAction.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemActions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemLayout.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItem.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemText.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListSubHeader.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/typography.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/default-interfaces.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/errors.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/helpers.d.ts
/home/rasmus/Development/RAXA/packages/common/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/state.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/actions.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/log.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/service.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/plugin.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/Checkbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/Input.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/Slider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/base.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/Button.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/IconButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/BrowseButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/dialog/Dialog.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/dialog-input.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-with-media/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-input.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/property.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/status.tsx
/home/rasmus/Development/key-activate/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/flexbox-react/dist/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-components/typings/styled-components.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/colors.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/section.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/two-pane.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/with-push-state.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list-detail.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/validation.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context-actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-form.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/settings/devices.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/app_bar/AppBar.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/navigation/Navigation.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/scaffold.tsx
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/reducer.tsx
/home/rasmus/Development/RAXA/packages/web/src/lib/store.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/snackbar/Snackbar.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/redux-snackbar.tsx
/home/rasmus/Development/RAXA/packages/web/src/toolbox/theme.js
/home/rasmus/Development/RAXA/packages/web/src/app.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/index.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
/home/rasmus/Development/RAXA/packages/web/typings/assets.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/async/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/isomorphic-fetch/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/jest/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/node/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/ramda/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/recompose/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/source-map/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/tapable/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/uglify-js/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/webpack/index.d.ts
-----------------------------------------------
Open files:
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
Info 48 event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","configFile":"/home/rasmus/Development/RAXA/packages/web/tsconfig.json","diagnostics":[]}}
Perf 49 10::open: async elapsed time (in milliseconds) 84.1802
Info 50 request: {"seq":11,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":23}}
Perf 51 11::quickinfo: elapsed time (in milliseconds) 0.6694
Info 52 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":11,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":9,"offset":23},"end":{"line":9,"offset":34},"displayString":"import withIsTouch","documentation":""}}
Info 53 request: {"seq":12,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":20}}
Perf 54 12::definition: elapsed time (in milliseconds) 2.1131
Info 55 response: {"seq":0,"type":"response","command":"definition","request_seq":12,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","start":{"line":9,"offset":13},"end":{"line":9,"offset":25}}]}
Info 56 request: {"seq":13,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx"]}}
Perf 57 13::geterr: async elapsed time (in milliseconds) 0.5117
Info 58 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 59 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 60 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 61 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 62 event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":13}}
Info 63 request: {"seq":14,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":14}}
Perf 64 14::quickinfo: elapsed time (in milliseconds) 0.6341
Info 65 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":14,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":9,"offset":9},"end":{"line":9,"offset":21},"displayString":"import IsTouchProps","documentation":""}}
Info 66 request: {"seq":15,"type":"request","command":"occurrences","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":14}}
Perf 67 15::occurrences: elapsed time (in milliseconds) 10.6469
Info 68 response: {"seq":0,"type":"response","command":"occurrences","request_seq":15,"success":true,"body":[{"start":{"line":9,"offset":9},"end":{"line":9,"offset":21},"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","isWriteAccess":true},{"start":{"line":72,"offset":44},"end":{"line":72,"offset":56},"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","isWriteAccess":false}]}
Info 69 request: {"seq":16,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","line":9,"offset":14}}
Perf 70 16::definition: elapsed time (in milliseconds) 0.5845
Info 71 response: {"seq":0,"type":"response","command":"definition","request_seq":16,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","start":{"line":9,"offset":13},"end":{"line":9,"offset":25}}]}
Info 72 request: {"seq":17,"type":"request","command":"quickinfo","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","line":9,"offset":14}}
Perf 73 17::quickinfo: elapsed time (in milliseconds) 1.7869
Info 74 response: {"seq":0,"type":"response","command":"quickinfo","request_seq":17,"success":true,"body":{"kind":"type","kindModifiers":"export","start":{"line":9,"offset":13},"end":{"line":9,"offset":25},"displayString":"type IsTouchProps = {\n isTouch: boolean;\n}","documentation":""}}
Info 75 request: {"seq":18,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","fileContent":"import * as React from 'react'\nimport {Route} from 'react-router'\nimport compose from 'recompose/compose'\nimport {SectionProps} from './section'\n\nexport type RouteSectionProps = SectionProps & {\n url: string\n}\nexport type PrivateRouteSectionProps = RouteSectionProps & {}\n\nexport const enhance = compose()\n\nexport const RouteSectionView = ({url}: PrivateRouteSectionProps) =>\n <Route path={url} />\n\nexport const RouteSection = enhance(RouteSectionView) as React.ComponentClass<RouteSectionProps>\n","scriptKindName":"TSX"}}
Info 76 Search path: /home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold
Info 77 Config file name: /home/rasmus/Development/RAXA/packages/web/tsconfig.json
Info 78 Project '/home/rasmus/Development/RAXA/packages/web/tsconfig.json' (Configured) 0
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.es5.d.ts
/home/rasmus/Development/RAXA/node_modules/typescript/lib/lib.dom.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/redux/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/source.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/ast.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/definition.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/directives.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/schema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/location.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/kinds.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/lexer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/parser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/printer.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/visitor.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/language/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/GraphQLError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/syntaxError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/locatedError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/formatError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/error/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/execute.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/scalars.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/introspection.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/type/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/execution/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/TypeInfo.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/specifiedRules.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/validate.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/validation/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/introspectionQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/getOperationAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildClientSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/buildASTSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/extendSchema.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/schemaPrinter.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/valueFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/astFromValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidJSValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/isValidLiteralValue.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/concatAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/separateOperations.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/typeComparators.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/assertValidName.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findBreakingChanges.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/findDeprecatedUsages.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/utilities/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/graphql/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/afterware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/batchedNetworkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/middleware.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/transport/networkInterface.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/utilities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/graphql-anywhere/lib/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/storeUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/mutationResults.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/readFromStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/fragmentMatcher.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/proxy.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/networkStatus.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/types.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/watchQueryOptions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/actions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/mutations/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/optimistic-data/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/store.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/util/Observable.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/ApolloClient.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/QueryManager.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/scheduler/scheduler.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/errors/ApolloError.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/core/ObservableQuery.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/getFromAST.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/data/writeToStore.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/queries/queryTransform.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/apollo-client/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/ApolloProvider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/graphql.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/node_modules/graphql-tag/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/browser.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/server.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-apollo/lib/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/node_modules/@types/react-router-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/entities.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/List.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListCheckbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListDivider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemContent.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemAction.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemActions.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemLayout.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItem.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListItemText.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/ListSubHeader.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/list/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/typography.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/default-interfaces.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/errors.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/helpers.d.ts
/home/rasmus/Development/RAXA/packages/common/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/state.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/actions.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/log.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/service.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/plugin.d.ts
/home/rasmus/Development/RAXA/packages/common/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/Checkbox.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/checkbox/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/Input.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/input/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/Slider.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/slider/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/base.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/Button.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/IconButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/BrowseButton.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/button/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/dialog/Dialog.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/dialog-input.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-with-media/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-input.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/property.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/redux-decorated/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/properties/status.tsx
/home/rasmus/Development/key-activate/lib/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/flexbox-react/dist/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-components/typings/styled-components.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/styled-material/dist/src/colors.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/section.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/two-pane.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/with-push-state.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list-detail.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/validation.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-form-helper/dist/src/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/context-actions.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/setting-form.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/settings/devices.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/app_bar/AppBar.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/navigation/Navigation.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/scaffold.tsx
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/reducer.tsx
/home/rasmus/Development/RAXA/packages/web/src/lib/store.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/react-toolbox/lib/snackbar/Snackbar.d.ts
/home/rasmus/Development/RAXA/packages/web/src/redux-snackbar/redux-snackbar.tsx
/home/rasmus/Development/RAXA/packages/web/src/toolbox/theme.js
/home/rasmus/Development/RAXA/packages/web/src/app.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-dom/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/index.tsx
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/DOMUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createBrowserHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createHashHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/createMemoryHistory.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/LocationUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/PathUtils.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/history/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/react-router/index.d.ts
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
/home/rasmus/Development/RAXA/packages/web/typings/assets.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/async/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/isomorphic-fetch/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/jest/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/node/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/ramda/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/recompose/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/source-map/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/tapable/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/uglify-js/index.d.ts
/home/rasmus/Development/RAXA/packages/web/node_modules/@types/webpack/index.d.ts
-----------------------------------------------
Open files:
/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx
/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx
Info 79 event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","configFile":"/home/rasmus/Development/RAXA/packages/web/tsconfig.json","diagnostics":[]}}
Perf 80 18::open: async elapsed time (in milliseconds) 140.5367
Info 81 request: {"seq":19,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx"]}}
Perf 82 19::geterr: async elapsed time (in milliseconds) 0.3770
Info 83 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","diagnostics":[]}}
Info 84 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","diagnostics":[]}}
Info 85 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 86 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/list.tsx","diagnostics":[]}}
Info 87 event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 88 event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/mediaQueries.tsx","diagnostics":[]}}
Info 89 event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":19}}
Info 90 request: {"seq":20,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","line":16,"offset":13}}
Perf 91 20::definition: elapsed time (in milliseconds) 0.9985
Info 92 response: {"seq":0,"type":"response","command":"definition","request_seq":20,"success":false,"message":"No content available."}
Info 93 request: {"seq":21,"type":"request","command":"definition","arguments":{"file":"/home/rasmus/Development/RAXA/packages/web/src/components/ui/scaffold/route-section.tsx","line":14,"offset":8}}
Perf 94 21::definition: elapsed time (in milliseconds) 1.5470
Info 95 response: {"seq":0,"type":"response","command":"definition","request_seq":21,"success":true,"body":[{"file":"/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts","start":{"line":71,"offset":9},"end":{"line":71,"offset":14}}]}
Info 96 request: {"seq":22,"type":"request","command":"open","arguments":{"file":"/home/rasmus/Development/RAXA/node_modules/@types/react-router/index.d.ts","fileContent":"// Type definitions for React Router 4.0\r\n// Project: https://github.com/ReactTraining/react-router\r\n// Definitions by: Sergey Buturlakin <https://github.com/sergey-buturlakin>\r\n// Yuichi Murata <https://github.com/mrk21>\r\n// Václav Ostrožlík <https://github.com/vasek17>\r\n// Nathan Brown <https://github.com/ngbrown>\r\n// Alex Wendland <https://github.com/awendland>\r\n// Kostya Esmukov <https://github.com/KostyaEsmukov>\r\n// John Reilly <https://github.com/johnnyreilly>\r\n// Karol Janyst <https://github.com/LKay>\r\n// Dovydas Navickas <https://github.com/DovydasNavickas>\r\n// Tanguy Krotoff <https://github.com/tkrotoff>\r\n// Huy Nguyen <https://github.com/huy-nguyen>\r\n// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\r\n// TypeScript Version: 2.2\r\n\r\ndeclare module 'react-router' {\r\n import * as React from 'react';\r\n import * as H from 'history';\r\n\r\n\t// This is the type of the context object that will be passed down to all children of\r\n\t// a `Router` component:\r\n\tinterface RouterChildContext<P> {\r\n\t\trouter: {\r\n\t\t\thistory: H.History\r\n\t\t\troute: {\r\n\t\t\t\tlocation: H.Location,\r\n\t\t\t\tmatch: match<P>\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n interface MemoryRouterProps {\r\n initialEntries?: H.Location[];\r\n initialIndex?: number;\r\n getUserConfirmation?: () => void;\r\n keyLength?: number;\r\n }\r\n class MemoryRouter extends React.Component<MemoryRouterProps, void> {}\r\n\r\n\r\n interface PromptProps {\r\n message: string | ((location: H.Location) => void);\r\n when?: boolean;\r\n }\r\n class Prompt extends React.Component<PromptProps, void> {}\r\n\r\n\r\n interface RedirectProps {\r\n to: H.LocationDescriptor;\r\n push?: boolean;\r\n from?: string;\r\n }\r\n class Redirect extends React.Component<RedirectProps, void> {}\r\n\r\n\r\n interface RouteComponentProps<P> {\r\n match: match<P>;\r\n location: H.Location;\r\n history: H.History;\r\n }\r\n\r\n interface RouteProps {\r\n location?: H.Location;\r\n component?: React.SFC<RouteComponentProps<any> | void> | React.ComponentClass<RouteComponentProps<any> | void>;\r\n render?: (props: RouteComponentProps<any>) => React.ReactNode;\r\n children?: (props: RouteComponentProps<any>) => React.ReactNode | React.ReactNode;\r\n path?: string;\r\n exact?: boolean;\r\n strict?: boolean;\r\n }\r\n class Route extends React.Component<RouteProps, void> {}\r\n\r\n\r\n interface RouterProps {\r\n history: any;\r\n }\r\n class Router extends React.Component<RouterProps, void> {}\r\n\r\n\r\n interface StaticRouterProps {\r\n basename?: string;\r\n location?: string | object;\r\n context?: object;\r\n }\r\n class StaticRouter extends React.Component<StaticRouterProps, void> {}\r\n\r\n\r\n interface SwitchProps extends RouteProps {\r\n }\r\n class Switch extends React.Component<SwitchProps, void> {}\r\n\r\n\r\n interface match<P> {\r\n params: P;\r\n isExact: boolean;\r\n path: string;\r\n url: string;\r\n }\r\n\r\n\r\n function matchPath<P>(pathname: string, props: RouteProps): match<P> | null;\r\n\r\n\r\n function withRouter(component: React.SFC<RouteComponentProps<any>> | React.ComponentClass<RouteComponentProps<any>>): React.ComponentClass<any>;\r\n\r\n\r\n export {\r\n MemoryRouter,\r\n Prompt,\r\n Redirect,\r\n RouteComponentProps, // TypeScript specific, not from React Router itself\r\n RouteProps, // TypeScript specific, not from React Router itself\r\n Route,\r\n Router,\r\n StaticRouter,\r\n Switch,\r\n match, // TypeScript specific, not from React Router itself\r\n matchPath,\r\n\t\twithRouter,\r\n\t\tRouterChildContext\r\n }\r\n}\r\n","scriptKindName":"TS"}}
Info 97 Search path: /home/rasmus/Development/RAXA/node_modules/@types/react-router
Info 98 Config file name: /home/rasmus/Development/RAXA/tsconfig.json
Info 99 No plugins exist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment