Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Latest VSCode Insiders electron_node tsserver.js taking 100% of CPU #63630

Closed
Kamilius opened this issue Nov 22, 2018 · 27 comments
Closed

Latest VSCode Insiders electron_node tsserver.js taking 100% of CPU #63630

Kamilius opened this issue Nov 22, 2018 · 27 comments
Assignees
Labels
info-needed Issue requires more information from poster

Comments

@Kamilius
Copy link

Issue Type: Bug

Few latest versions of VSCode Insiders, during start for a few minutes spin "Initializing JS/TS language features" message on bottom, as well as electron_node tsserver.js process from VSCode's "Process Explorer" takes 100% of CPU. Restart of application doesn't give anything. Stable version doesn't have such issue. Using "Settings sync" extension to make sure, configurations are more or less identical

VS Code version: Code - Insiders 1.30.0-insider (0d3a144, 2018-11-22T06:13:15.521Z)
OS version: Darwin x64 18.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz (8 x 2200)
GPU Status 2d_canvas: enabled
checker_imaging: disabled_off
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
multiple_raster_threads: enabled_on
native_gpu_memory_buffers: enabled
rasterization: enabled
video_decode: enabled
video_encode: enabled
webgl: enabled
webgl2: enabled
Load (avg) 6, 7, 6
Memory (System) 16.00GB (1.06GB free)
Process Argv
Screen Reader no
VM 0%
Extensions (31)
Extension Author (truncated) Version
vscode-html-scss P-d 0.0.42
indenticator Sir 0.6.0
html-css-class-completion Zig 1.17.1
vscode-file-peek abi 1.0.1
html-snippets abu 0.2.1
ng-template Ang 0.1.10
npm-intellisense chr 1.3.0
path-intellisense chr 1.4.2
vscode-svgviewer css 1.4.7
xml Dot 2.3.2
vscode-babel-coloring dza 0.0.4
gitlens eam 8.5.6
tslint eg2 1.0.40
vscode-npm-script eg2 0.3.5
prettier-vscode esb 1.7.2
git-project-manager fel 1.7.1
vscode-pull-request-github Git 0.3.0
vscode-jasmine-test-adapter hbe 1.2.0
vscode-test-explorer hbe 2.2.0
docthis joe 0.7.1
Angular2 joh 7.0.1
vscode-colorize kam 0.8.1
vscode-scss mrm 0.6.2
seti-icons qin 0.1.3
vscode-sort-json ric 1.13.0
vscode-icons rob 7.28.0
sass-indented rob 1.4.9
code-settings-sync Sha 3.2.0
stylelint shi 0.46.1
vscode-todo-highlight way 1.0.4
JasmineSnippets xab 1.0.1

(1 theme extensions excluded)

@ianp
Copy link

ianp commented Nov 23, 2018

I see the same thing, see a snapshot of my process explorer below

screenshot 2018-11-23 at 11 31 50

For me at least this is happening when I save a file (I also see the Running save participants… spinner in the status bar for a much longer time than usual).

@mjbvz
Copy link
Collaborator

mjbvz commented Nov 29, 2018

Please try collecting the TS Server log:

  1. Set "typescript.tsserver.log": "verbose",
  2. Restart VS Code and reproduce the problem
  3. In VS Code, run the TypeScript: Open TS Server log command
  4. This should open a folder with a tsserver.log file in it

Look through that log file for errors or stack traces. If you can share the log, I can also take a look to see if anything stands out

⚠️Warning: The TypeScript log may include information from your workspace, including file paths and source code. If you have any concerns about posting this publicly on Github, just let me know and we can arrange something else. On our side, we only use these logs to investigate issues like this

@mjbvz mjbvz added the info-needed Issue requires more information from poster label Nov 29, 2018
@Kamilius
Copy link
Author

Kamilius commented Nov 29, 2018

@mjbvz could you tell how to run TypeScript: Open TS Server log command? Can't seem to find it inside Command palette.

Edit:
Found output inside "Output" tab of an integrated terminal. Found tsserver.log path and file itself.
And yeah, it actually includes some personal data/paths. How can I send it to you without posting it publicly?

@mjbvz
Copy link
Collaborator

mjbvz commented Nov 29, 2018

You can email it to matb at microsoft or run code-insiders --upload-logs from the command line option to upload your logs to a secure store

@Kamilius
Copy link
Author

Kamilius commented Dec 3, 2018

@mjbvz can not upload logs, getting 500 error. Shall I put error's id here? And what's an email address to send those logs manually, if needed?

@mjbvz
Copy link
Collaborator

mjbvz commented Dec 3, 2018

You can email them to matb at microsoft

@Kamilius
Copy link
Author

Kamilius commented Dec 4, 2018

@mjbvz sent

@Kamilius
Copy link
Author

@mjbvz is there any progress on this one?

@mjbvz
Copy link
Collaborator

mjbvz commented Dec 12, 2018

@Kamilius In your workspace, do you have copies of some large open source projects like angular (not under node_modeules but just copied into the workspace)?

@Kamilius
Copy link
Author

@mjbvz that's a "multi-app" project. It has one "external" project with it's own node_modules "just copied into the workspace", but it's not "that" big and it's own node_modules are in .gitignore.

@mjbvz
Copy link
Collaborator

mjbvz commented Dec 13, 2018

In the logs see a very large number of js files being loaded from staticresources, things like the source of jquery and angular.

Can you try excluding all resources in staticresources from your project using a jsconfig or tsconfig:

{
    "compilerOptions": {
        "target": "ES6"
    },
    "exclude": [
        "node_modules",
        "**/node_modules/*",
         "**/staticresources/*"
    ]
}

@vscodebot vscodebot bot removed the insiders label Dec 13, 2018
@Kamilius
Copy link
Author

Kamilius commented Dec 14, 2018

@mjbvz did it for main tsconfig, as well as added into .gitignore. Issue with TS/JS initialization - persists, intellisense still not working.

@mjbvz
Copy link
Collaborator

mjbvz commented Dec 14, 2018

Does your project have other tsconfigs or jsconfigs that would include staticresources? Try opening jquery.min.js or one of the files from staticresources and run the JavaScript: Go to project configuration command in the vscode command palette . Does this open any jsconfig or tsconfig?

@ianp
Copy link

ianp commented Dec 18, 2018

@mjbvz just emailed you another example of a tsserver.log after observing this behaviour, maybe having 2 different examples will shed some light on what is going on?

@bburtin
Copy link

bburtin commented Jan 8, 2019

I'm also hitting this problem. As I type this, I have about 8 code processes running tsserver.js or typingsInstaller.js. Each one is consuming 30-180% CPU. Would be great to get a fix or workaround.

-> % code --status 
Failed to watch /home/boris/.config/Code/User for changes (Error: watch /home/boris/.config/Code/User ENOSPC)

Version:          Code 1.30.1 (dea8705087adb1b5e5ae1d9123278e178656186a, 2018-12-18T18:07:32.870Z)
OS Version:       Linux x64 4.15.0-43-generic
CPUs:             Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (8 x 399)
Memory (System):  15.39GB (2.15GB free)
Load (avg):       4, 5, 7
VM:               0%
Screen Reader:    no
Process Argv:     --unity-launch
GPU Status:       2d_canvas:                    enabled
                  checker_imaging:              disabled_off
                  flash_3d:                     enabled
                  flash_stage3d:                enabled
                  flash_stage3d_baseline:       enabled
                  gpu_compositing:              enabled
                  multiple_raster_threads:      enabled_on
                  native_gpu_memory_buffers:    disabled_software
                  rasterization:                disabled_software
                  video_decode:                 unavailable_software
                  video_encode:                 unavailable_software
                  webgl:                        enabled
                  webgl2:                       enabled

CPU %	Mem MB	   PID	Process
    0	   110	  2266	code main
    0	    32	  2270	   zygote
    0	   268	  2310	     window (Settings - Visual Studio Code)
    0	    79	  2657	       extensionHost
    0	    63	  2678	       watcherService
    0	    95	  2633	     shared-process
    0	    63	  2302	   gpu-process

Workspace Stats:
|  Window (Settings - Visual Studio Code)
|    Folder (xxx): 14011 files
|      File types: rb(3961) png(1891) js(1828) html(1493) svg(397) erb(375)
|                  scss(306) pp(263) text(230) c(221)
|      Conf files: package.json(8) makefile(6) grunt.js(1) tsconfig.json(1)
|                  tslint.json(1)

@Kamilius
Copy link
Author

Kamilius commented Jan 9, 2019

Does your project have other tsconfigs or jsconfigs that would include staticresources? Try opening jquery.min.js or one of the files from staticresources and run the JavaScript: Go to project configuration command in the vscode command palette . Does this open any jsconfig or tsconfig?

In this case it shows toast message File is not part of a JavaScript project

@midgethoen
Copy link

I'm having the same/similar issue. in 1.31.1.

after reloading window and making an edit to a .ts file, the extensionHost process is immediately stuck at 100% CPU

image

image

i've uploaded my logs after reproducing it (ID: 2345568946)

@midgethoen
Copy link

It doesn't happen to me when I disable extensions.
Is there any way of figuring out which is the culprit when something like this happens?

@mjbvz
Copy link
Collaborator

mjbvz commented Feb 19, 2019

@midgethoen Follow these instructions to investigate performance issues.

@Kamilius Are you still running into the issue you originally reported?

@vscodebot vscodebot bot closed this as completed Mar 8, 2019
@vscodebot
Copy link

vscodebot bot commented Mar 8, 2019

This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.

Happy Coding!

@laila-vinson
Copy link

laila-vinson commented Apr 5, 2019

@mjbvz I'm seeing this issue on one of my projects after upgrading to Mojave. This is a typescript/react app nested inside of an angular app. Other typescript projects still work okay, and this project worked fine before upgrading my OS. I've uninstalled all extensions but the problem is still there. Can I email the Typescript log output to matb at microsoft?

@mjbvz
Copy link
Collaborator

mjbvz commented Apr 5, 2019

@laila-vinson Please open a new issue

@beausmith
Copy link

FWIW, I was experiencing "electron_node tsserver.js taking 100% of CPU" and the following steps seemed to resolve the issue for me:

  1. Quit app.
  2. Open app with extensions disabled: code --disable-extensions
  3. Quit app.
  4. Open app.

@mpourismaiel
Copy link

I'm seeing this problem as well and @beausmith solution doesn't work for me. I removed a bunch of extensions, checked the logs for errors, removed typescript-styled-plugin which had a missing dependency and still the problem persists. Disabling all extensions using --disable-extensions doesn't solve the problem as well.

Changing the typescript.tsserver.log to verbose with all extensions disabled outputs this log:

Info 0    [14:28:16.650] Starting TS Server
Info 1    [14:28:16.651] Version: 3.4.1
Info 2    [14:28:16.651] Arguments: /opt/visual-studio-code/code /opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/tsserver.js --useInferredProjectPerProjectRoot --enableTelemetry --cancellationPipeName /tmp/vscode-typescript/tscancellation-7e33b06f060b3bdba9ab.tmp* --logVerbosity verbose --logFile /home/mahdi/.config/Code/logs/20190409T142809/exthost1/vscode.typescript-language-features/tsserver-log-4Kyj1S/tsserver.log --locale en --noGetErrOnBackgroundUpdate
Info 3    [14:28:16.651] Platform: linux NodeVersion: 10 CaseSensitive: true
Info 4    [14:28:16.656] Binding...
Info 5    [14:28:16.666] request:
    {"seq":0,"type":"request","command":"configure","arguments":{"hostInfo":"vscode","preferences":{"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 6    [14:28:16.666] Host information vscode
Info 7    [14:28:16.666] response:
    {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 8    [14:28:16.667] 0::configure: async elapsed time (in milliseconds) 1.5955
Info 9    [14:28:16.667] request:
    {"seq":1,"type":"request","command":"compilerOptionsForInferredProjects","arguments":{"options":{"module":"commonjs","target":"es2016","jsx":"preserve","allowJs":true,"allowSyntheticDefaultImports":true,"allowNonTsExtensions":true}}}
Info 10   [14:28:16.668] Scheduled: *ensureProjectForOpenFiles*
Perf 11   [14:28:16.668] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 0.8400
Info 12   [14:28:16.668] response:
    {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 13   [14:28:16.668] request:
    {"seq":2,"type":"request","command":"updateOpen","arguments":{"openFiles":[{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","fileContent":"import * as React from 'react';\nimport { connect } from 'react-redux';\nimport { withRouter, RouteComponentProps } from 'react-router';\n\nimport { IState } from '../../../store/reducers';\nimport TableWidget from '../../../components/widgets/table';\nimport { Layouts, Form } from 'tm-designs';\nimport {\n  ResourcesState,\n  ResourceState,\n  fetchResource,\n} from '../../../store/reducers/resources';\nimport { Resources, parseAPI } from '../../../api';\nimport { uesResource } from '../../../utils/hooks/resource';\nimport store from '../../../store';\nimport { usePagination } from '../../../utils/hooks/pagination';\nimport { PageSearchContainer, PageItemCountContainer } from './styles';\n\nconst { Box } = Layouts;\nconst { Button, ButtonRadio, Input } = Form;\n\nexport interface UsersProps extends RouteComponentProps {\n  users: ResourcesState['users'];\n}\n\nconst usersEndpoint = parseAPI(Resources.Users)[0];\n\nconst tableColumns = {\n  id: 'ردیف',\n  firstName: 'نام',\n  lastName: 'نام خانوادگی',\n  nationalCode: 'کد ملی',\n  phone: 'شماره موبایل',\n  type: 'نوع کاربر',\n  referrer: 'معرف',\n  profile: 'پروفایل',\n};\n\nconst tableCellMap = (key: string, value: string, isTitle?: boolean) => {\n  if (key === 'id') {\n    return { text: value, className: 'text-center' };\n  }\n  return value;\n};\n\nconst Users: React.FunctionComponent<UsersProps> = ({\n  users,\n  history,\n  ...props\n}) => {\n  uesResource(users, Resources.Users);\n  const [query, setQuery] = React.useState('');\n\n  const { itemCount, setItemCount, page, setPage } = usePagination(\n    10,\n    1,\n    ({ itemCount, page }) =>\n      store.dispatch(\n        fetchResource({\n          url: `${usersEndpoint}?itemCount=${itemCount}&page=${page}`,\n          resources: [Resources.Users],\n        }),\n      ),\n  );\n\n  if (!users || users.state !== ResourceState.done) return null;\n\n  return (\n    <Box column>\n      <Box justifyContent=\"space-between\" className=\"mb-20\">\n        <PageSearchContainer>\n          <Input input={{ onChange: setQuery, value: query }} label=\"جستجو\" />\n          <div className=\"actions\">\n            <span>فیلتر کردن</span>\n            <Button outline>ایجاد کاربر جدید</Button>\n          </div>\n        </PageSearchContainer>\n        <PageItemCountContainer alignItems=\"center\">\n          <span className=\"title\">نمایش تعداد:</span>\n          <ButtonRadio\n            fieldClass=\"radio\"\n            input={{ value: itemCount, onChange: setItemCount }}\n            checkValue={10}\n            label=\"۱۰\"\n          />\n          <ButtonRadio\n            fieldClass=\"radio\"\n            input={{ value: itemCount, onChange: setItemCount }}\n            checkValue={25}\n            label=\"۲۵\"\n          />\n          <ButtonRadio\n            fieldClass=\"radio\"\n            input={{ value: itemCount, onChange: setItemCount }}\n            checkValue={50}\n            label=\"۵۰\"\n          />\n        </PageItemCountContainer>\n      </Box>\n      <TableWidget\n        data={users.data.data}\n        columns={tableColumns}\n        map={tableCellMap}\n        handleRowClick={row => history.push(`/users/${row.id}/profile`)}\n      />\n    </Box>\n  );\n};\n\nexport default withRouter(\n  connect((state: IState) => ({\n    users: state.resources[Resources.Users],\n  }))(Users),\n);\n","scriptKindName":"TSX","projectRootPath":"/home/mahdi/Documents/Projects/tripe-ma/admin"}]}}
Info 14   [14:28:16.670] Search path: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users
Info 15   [14:28:16.671] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 16   [14:28:16.671] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 17   [14:28:16.671] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 18   [14:28:16.671] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 19   [14:28:16.671] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 20   [14:28:16.671] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 21   [14:28:16.672] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 22   [14:28:16.672] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/src/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 23   [14:28:16.672] ConfigFilePresence:: Current Watches: :: File: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx Status: File added to open files impacted by this config file
Info 24   [14:28:16.672] For info: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx :: Config file name: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Info 25   [14:28:16.672] Opened configuration file /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Info 26   [14:28:16.674] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json 2000 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Config file
Info 27   [14:28:16.675] event:
    {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json","reason":"Creating possible configured project for /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx to open"}}
Info 28   [14:28:16.719] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Wild card directory
Info 29   [14:28:16.728] Elapsed:: 9ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Wild card directory
Info 30   [14:28:16.729] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/index.tsx 500 Project:  WatchType: Closed Script info
Info 31   [14:28:16.730] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/react-app-env.d.ts 500 Project:  WatchType: Closed Script info
Info 32   [14:28:16.731] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/serviceWorker.ts 500 Project:  WatchType: Closed Script info
Info 33   [14:28:16.731] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.test.ts 500 Project:  WatchType: Closed Script info
Info 34   [14:28:16.731] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.ts 500 Project:  WatchType: Closed Script info
Info 35   [14:28:16.731] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/index.ts 500 Project:  WatchType: Closed Script info
Info 36   [14:28:16.732] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/features/index.ts 500 Project:  WatchType: Closed Script info
Info 37   [14:28:16.732] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/menus/index.ts 500 Project:  WatchType: Closed Script info
Info 38   [14:28:16.732] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/components/logo.tsx 500 Project:  WatchType: Closed Script info
Info 39   [14:28:16.732] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.styles.tsx 500 Project:  WatchType: Closed Script info
Info 40   [14:28:16.732] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.tsx 500 Project:  WatchType: Closed Script info
Info 41   [14:28:16.733] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/app.tsx 500 Project:  WatchType: Closed Script info
Info 42   [14:28:16.733] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/ensure-auth.tsx 500 Project:  WatchType: Closed Script info
Info 43   [14:28:16.733] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/login.tsx 500 Project:  WatchType: Closed Script info
Info 44   [14:28:16.733] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/index.tsx 500 Project:  WatchType: Closed Script info
Info 45   [14:28:16.733] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/navbar.tsx 500 Project:  WatchType: Closed Script info
Info 46   [14:28:16.733] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/sidebar.tsx 500 Project:  WatchType: Closed Script info
Info 47   [14:28:16.734] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/styles.ts 500 Project:  WatchType: Closed Script info
Info 48   [14:28:16.734] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/actions.tsx 500 Project:  WatchType: Closed Script info
Info 49   [14:28:16.734] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/auth.tsx 500 Project:  WatchType: Closed Script info
Info 50   [14:28:16.735] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/finance.tsx 500 Project:  WatchType: Closed Script info
Info 51   [14:28:16.735] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/index.tsx 500 Project:  WatchType: Closed Script info
Info 52   [14:28:16.735] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/profile.tsx 500 Project:  WatchType: Closed Script info
Info 53   [14:28:16.735] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/reserves.tsx 500 Project:  WatchType: Closed Script info
Info 54   [14:28:16.735] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/store/index.ts 500 Project:  WatchType: Closed Script info
Info 55   [14:28:16.735] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/auth.ts 500 Project:  WatchType: Closed Script info
Info 56   [14:28:16.736] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/index.ts 500 Project:  WatchType: Closed Script info
Info 57   [14:28:16.736] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/resources.ts 500 Project:  WatchType: Closed Script info
Info 58   [14:28:16.736] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/types/index.ts 500 Project:  WatchType: Closed Script info
Info 59   [14:28:16.736] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/axios.ts 500 Project:  WatchType: Closed Script info
Info 60   [14:28:16.736] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/string.ts 500 Project:  WatchType: Closed Script info
Info 61   [14:28:16.737] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/debug.ts 500 Project:  WatchType: Closed Script info
Info 62   [14:28:16.737] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/pagination.ts 500 Project:  WatchType: Closed Script info
Info 63   [14:28:16.738] FileWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/resource.ts 500 Project:  WatchType: Closed Script info
Info 64   [14:28:16.769] Starting updateGraphWorker: Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Info 65   [14:28:16.833] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 66   [14:28:16.833] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/src 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 67   [14:28:16.834] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 68   [14:28:17.741] Elapsed:: 907ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 69   [14:28:18.110] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/node_modules 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 70   [14:28:18.111] Elapsed:: 1ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/node_modules 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 71   [14:28:18.782] DirectoryWatcher:: Added:: WatchInfo: /opt/visual-studio-code/resources/app/extensions/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 72   [14:28:18.786] Elapsed:: 4ms DirectoryWatcher:: Added:: WatchInfo: /opt/visual-studio-code/resources/app/extensions/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 73   [14:28:20.33] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/node_modules 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 74   [14:28:20.33] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/node_modules 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 75   [14:28:20.34] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/node_modules 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 76   [14:28:20.34] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/node_modules 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Failed Lookup Locations
Info 77   [14:28:20.83] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Type roots
Info 78   [14:28:20.83] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Type roots
Info 79   [14:28:20.83] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/node_modules/@types 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Type roots
Info 80   [14:28:20.83] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/tripe-ma/node_modules/@types 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Type roots
Info 81   [14:28:20.83] DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/node_modules/@types 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Type roots
Info 82   [14:28:20.83] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/mahdi/Documents/Projects/node_modules/@types 1 Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json WatchType: Type roots
Info 83   [14:28:20.83] Finishing updateGraphWorker: Project: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json Version: 1 structureChanged: true Elapsed: 3314ms
Info 84   [14:28:20.85] event:
    {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json"}}
Info 85   [14:28:20.87] event:
    {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"7f7908f1958f98431b423dc028a497734e0768b2833fd6331e70ce87138dc47e","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":17,"tsSize":23863,"tsx":17,"tsxSize":45654,"dts":162,"dtsSize":3854648,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es5","lib":["dom","dom.iterable","esnext"],"allowJs":true,"skipLibCheck":true,"esModuleInterop":true,"allowSyntheticDefaultImports":true,"strict":true,"forceConsistentCasingInFileNames":true,"module":"esnext","moduleResolution":"node","resolveJsonModule":true,"isolatedModules":true,"noEmit":true,"jsx":"preserve","strictNullChecks":false,"noImplicitAny":false},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"3.4.1"}}}
Info 86   [14:28:20.94] event:
    {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","configFile":"/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json","diagnostics":[]}}
Info 87   [14:28:20.95] Project '/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json' (Configured) 0
Info 87   [14:28:20.95] 	Files (196)
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.array.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.bigint.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/global.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/csstype/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/prop-types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/hoist-non-react-statics/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/button/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/input/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/file-input.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/switch/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/select/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/textarea/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/counter/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/modal.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/dialog.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/multi-stage.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/centered-box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/widget-container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/separators/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/calendar/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/logo/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/stages/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/title/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/assets/theme.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/dayjs/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/DOMUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createBrowserHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createHashHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createMemoryHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/LocationUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/PathUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-logic/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-compare/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/utils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/effects.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/saga.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/rest-actions.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/types.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/reducer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/redux-utility-belt.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/types/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/auth.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/resources.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/login.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/ensure-auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/classnames/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/menus/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/logo.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/sidebar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/navbar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/string.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/macro.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.styles.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-saga/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/axios/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/axios.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/resource.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/pagination.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/styles.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/profile.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/finance.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/reserves.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/actions.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/app.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/serviceWorker.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/assert.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/async_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/buffer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/child_process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/cluster.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/console.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/constants.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/crypto.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dgram.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dns.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/domain.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/fs.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http2.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/https.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/inspector.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/module.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/net.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/os.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/path.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/perf_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/punycode.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/querystring.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/readline.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/repl.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/stream.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/string_decoder.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/timers.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tls.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/trace_events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tty.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/url.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/v8.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/vm.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/worker_threads.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/zlib.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/base.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/react-scripts/lib/react-app.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/react-app-env.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.test.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/features/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/debug.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest-diff/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/q/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-tooltip/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/legacy-properties.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/BatchedBridge.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/Devtools.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/tapable/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/unist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile-message/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/webpack-env/index.d.ts

Info 87   [14:28:20.95] -----------------------------------------------
Info 87   [14:28:20.95] Open files: 
Info 87   [14:28:20.96] 	FileName: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx ProjectRootPath: /home/mahdi/Documents/Projects/tripe-ma/admin
Info 87   [14:28:20.96] 		Projects: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Info 87   [14:28:20.96] Project '/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json' (Configured) 0
Info 87   [14:28:20.96] 	Files (196)
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.array.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.bigint.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/global.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/csstype/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/prop-types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/hoist-non-react-statics/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/button/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/input/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/file-input.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/switch/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/select/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/textarea/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/counter/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/modal.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/dialog.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/multi-stage.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/centered-box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/widget-container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/separators/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/calendar/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/logo/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/stages/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/title/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/assets/theme.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/dayjs/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/DOMUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createBrowserHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createHashHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createMemoryHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/LocationUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/PathUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-logic/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-compare/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/utils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/effects.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/saga.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/rest-actions.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/types.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/reducer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/redux-utility-belt.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/types/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/auth.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/resources.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/login.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/ensure-auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/classnames/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/menus/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/logo.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/sidebar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/navbar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/string.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/macro.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.styles.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-saga/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/axios/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/axios.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/resource.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/pagination.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/styles.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/profile.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/finance.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/reserves.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/actions.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/app.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/serviceWorker.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/assert.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/async_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/buffer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/child_process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/cluster.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/console.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/constants.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/crypto.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dgram.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dns.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/domain.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/fs.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http2.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/https.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/inspector.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/module.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/net.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/os.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/path.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/perf_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/punycode.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/querystring.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/readline.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/repl.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/stream.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/string_decoder.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/timers.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tls.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/trace_events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tty.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/url.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/v8.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/vm.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/worker_threads.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/zlib.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/base.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/react-scripts/lib/react-app.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/react-app-env.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.test.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/features/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/debug.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest-diff/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/q/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-tooltip/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/legacy-properties.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/BatchedBridge.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/Devtools.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/tapable/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/unist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile-message/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/webpack-env/index.d.ts

Info 87   [14:28:20.96] -----------------------------------------------
Info 87   [14:28:20.96] Open files: 
Info 87   [14:28:20.96] 	FileName: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx ProjectRootPath: /home/mahdi/Documents/Projects/tripe-ma/admin
Info 87   [14:28:20.96] 		Projects: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Perf 87   [14:28:20.96] 2::updateOpen: elapsed time (in milliseconds) 3427.8037
Info 88   [14:28:20.96] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"body":true}
Info 89   [14:28:20.96] request:
    {"seq":3,"type":"request","command":"navtree","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"}}
Info 90   [14:28:20.101] response:
    {"seq":0,"type":"response","command":"navtree","request_seq":3,"success":true,"body":{"canceled":true}}
Info 91   [14:28:20.101] request:
    {"seq":4,"type":"request","command":"getSupportedCodeFixes","arguments":null}
Perf 92   [14:28:20.102] 4::getSupportedCodeFixes: elapsed time (in milliseconds) 0.2971
Info 93   [14:28:20.102] response:
    {"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":4,"success":true,"body":["2352","1329","7051","80004","7034","7005","7006","7019","7033","7010","7032","7008","7046","7043","7044","7047","7048","7050","7049","7045","80002","80006","80001","2713","2420","2720","2304","2552","2663","2662","2503","2686","2693","2551","2724","2339","2741","2739","2740","2348","2307","7016","2515","2653","17009","2377","1219","2689","6133","6196","6138","6192","6198","6199","6205","7027","7028","8020","1308","1103","1002","1003","1005","1006","1009","1010","1011","1012","1013","1014","1015","1016","1017","1018","1019","1020","1021","1022","1023","1024","1028","1029","1030","1031","1034","1035","1036","1038","1039","1040","1041","1042","1043","1044","1045","1046","1047","1048","1049","1051","1052","1053","1054","1055","1056","1057","1058","1059","1060","1061","1062","1063","1064","1066","1068","1069","1070","1071","1079","1084","1085","1086","1089","1090","1091","1092","1093","1094","1095","1096","1097","1098","1099","1100","1101","1102","1104","1105","1107","1108","1109","1110","1113","1114","1115","1116","1117","1118","1119","1120","1121","1123","1124","1125","1126","1127","1128","1129","1130","1131","1132","1134","1135","1136","1137","1138","1139","1140","1141","1142","1144","1146","1147","1148","1149","1150","1155","1156","1157","1160","1161","1162","1163","1164","1165","1166","1168","1169","1170","1171","1172","1173","1174","1175","1176","1177","1178","1179","1180","1181","1182","1183","1184","1185","1186","1187","1188","1189","1190","1191","1192","1193","1194","1196","1197","1198","1199","1200","1202","1203","1205","1206","1207","1208","1210","1211","1212","1213","1214","1215","1216","1218","1220","1221","1222","1223","1224","1225","1226","1227","1228","1229","1230","1231","1232","1233","1234","1235","1236","1237","1238","1239","1240","1241","1242","1243","1244","1245","1246","1247","1248","1249","1250","1251","1252","1253","1254","1255","1256","1257","1300","1312","1313","1314","1315","1316","1317","1318","1319","1320","1321","1322","1323","1324","1325","1326","1327","1328","1330","1331","1332","1333","1334","1335","1336","1337","1338","1339","1340","1342","1343","1344","1345","1346","1347","1348","1349","1351","1352","1353","1354","1355","2300","2301","2302","2303","2305","2306","2308","2309","2310","2311","2312","2313","2314","2315","2316","2317","2318","2319","2320","2321","2322","2323","2324","2325","2326","2327","2328","2329","2330","2331","2332","2333","2334","2335","2336","2337","2338","2340","2341","2342","2343","2344","2345","2346","2347","2349","2350","2351","2353","2354","2355","2356","2357","2358","2359","2360","2361","2362","2363","2364","2365","2366","2367","2368","2369","2370","2371","2372","2373","2374","2375","2376","2378","2379","2380","2381","2382","2383","2384","2385","2386","2387","2388","2389","2390","2391","2392","2393","2394","2395","2396","2397","2399","2400","2401","2402","2403","2404","2405","2406","2407","2408","2409","2410","2411","2412","2413","2414","2415","2416","2417","2418","2422","2423","2424","2425","2426","2427","2428","2430","2431","2432","2433","2434","2435","2436","2437","2438","2439","2440","2441","2442","2443","2444","2445","2446","2447","2448","2449","2450","2451","2452","2453","2454","2455","2456","2457","2458","2461","2462","2463","2464","2465","2466","2467","2468","2469","2470","2471","2472","2473","2474","2475","2476","2477","2478","2479","2480","2481","2483","2484","2487","2488","2489","2490","2491","2492","2493","2494","2495","2496","2497","2498","2499","2500","2501","2502","2504","2505","2506","2507","2508","2509","2510","2511","2512","2513","2514","2516","2517","2518","2519","2520","2521","2522","2523","2524","2525","2526","2527","2528","2529","2530","2531","2532","2533","2534","2535","2536","2537","2538","2539","2540","2541","2542","2543","2544","2545","2546","2547","2548","2549","2553","2554","2555","2556","2557","2558","2559","2560","2561","2562","2563","2564","2565","2566","2567","2569","2570","2571","2572","2573","2574","2575","2576","2577","2580","2581","2582","2583","2584","2585","2586","2587","2588","2589","2590","2591","2592","2593","2600","2601","2602","2603","2604","2605","2606","2607","2608","2609","2649","2651","2652","2654","2656","2657","2658","2659","2660","2661","2664","2665","2666","2667","2668","2669","2670","2671","2672","2673","2674","2675","2676","2677","2678","2679","2680","2681","2682","2683","2684","2685","2687","2688","2691","2692","2694","2695","2696","2697","2698","2699","2700","2701","2702","2703","2704","2705","2706","2707","2708","2709","2710","2711","2712","2714","2715","2716","2717","2718","2719","2721","2722","2723","2725","2726","2727","2729","2730","2731","2732","2733","2734","2735","2736","2737","2742","2743","2744","2745","2746","2747","2748","2749","2750","2751","2752","2753","4000","4002","4004","4006","4008","4010","4012","4014","4016","4019","4020","4022","4023","4024","4025","4026","4027","4028","4029","4030","4031","4032","4033","4034","4035","4036","4037","4038","4039","4040","4041","4042","4043","4044","4045","4046","4047","4048","4049","4050","4051","4052","4053","4054","4055","4056","4057","4058","4059","4060","4061","4062","4063","4064","4065","4066","4067","4068","4069","4070","4071","4072","4073","4074","4075","4076","4077","4078","4081","4082","4083","4090","4091","4092","4094","4095","4096","4097","4098","4099","4100","4101","4102","4103","5001","5009","5010","5012","5014","5023","5024","5033","5042","5047","5051","5052","5053","5054","5055","5056","5057","5058","5059","5060","5061","5062","5063","5064","5065","5066","5067","5068","5069","5070","5071","5072","5073","6044","6045","6046","6048","6049","6050","6051","6053","6054","6059","6064","6082","6103","6114","6131","6137","6140","6142","6188","6189","6200","6202","6304","6305","6306","6307","6308","6309","6369","6370","6377","6379","7009","7011","7013","7014","7015","7017","7018","7020","7022","7023","7024","7025","7026","7029","7030","7031","7035","7036","7039","7040","7041","7042","8000","8001","8002","8003","8004","8005","8006","8007","8008","8009","8010","8011","8012","8013","8015","8016","8017","8018","8021","8022","8023","8024","8025","8026","8027","8028","8029","8030","8031","8032","9002","9003","9004","17000","17001","17002","17003","17004","17005","17006","17007","17008","17010","17011","17012","17013","17014","17015","17016","17017","18000","18001","18002","18003","80005","80003"]}
Info 94   [14:28:20.103] event:
    {"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":22096}}
Info 95   [14:28:20.103] Running: *ensureProjectForOpenFiles*
Info 96   [14:28:20.103] Structure before ensureProjectForOpenFiles:
Info 97   [14:28:20.103] Project '/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json' (Configured) 0
Info 97   [14:28:20.103] 	Files (196)
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.array.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.bigint.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/global.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/csstype/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/prop-types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/hoist-non-react-statics/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/button/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/input/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/file-input.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/switch/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/select/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/textarea/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/counter/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/modal.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/dialog.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/multi-stage.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/centered-box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/widget-container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/separators/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/calendar/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/logo/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/stages/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/title/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/assets/theme.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/dayjs/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/DOMUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createBrowserHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createHashHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createMemoryHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/LocationUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/PathUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-logic/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-compare/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/utils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/effects.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/saga.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/rest-actions.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/types.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/reducer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/redux-utility-belt.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/types/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/auth.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/resources.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/login.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/ensure-auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/classnames/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/menus/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/logo.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/sidebar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/navbar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/string.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/macro.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.styles.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-saga/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/axios/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/axios.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/resource.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/pagination.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/styles.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/profile.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/finance.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/reserves.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/actions.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/app.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/serviceWorker.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/assert.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/async_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/buffer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/child_process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/cluster.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/console.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/constants.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/crypto.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dgram.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dns.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/domain.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/fs.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http2.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/https.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/inspector.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/module.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/net.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/os.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/path.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/perf_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/punycode.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/querystring.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/readline.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/repl.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/stream.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/string_decoder.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/timers.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tls.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/trace_events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tty.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/url.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/v8.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/vm.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/worker_threads.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/zlib.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/base.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/react-scripts/lib/react-app.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/react-app-env.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.test.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/features/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/debug.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest-diff/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/q/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-tooltip/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/legacy-properties.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/BatchedBridge.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/Devtools.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/tapable/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/unist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile-message/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/webpack-env/index.d.ts

Info 97   [14:28:20.103] -----------------------------------------------
Info 97   [14:28:20.103] Open files: 
Info 97   [14:28:20.103] 	FileName: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx ProjectRootPath: /home/mahdi/Documents/Projects/tripe-ma/admin
Info 97   [14:28:20.103] 		Projects: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Info 97   [14:28:20.103] Structure after ensureProjectForOpenFiles:
Info 98   [14:28:20.103] Project '/home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json' (Configured) 0
Info 98   [14:28:20.103] 	Files (196)
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.array.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.string.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.symbol.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.intl.d.ts
	/opt/visual-studio-code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.bigint.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/global.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/csstype/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/prop-types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/hoist-non-react-statics/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-redux/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/button/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/input/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/file-input.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/radio/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/checkbox/button.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/switch/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/select/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/textarea/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/counter/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/form/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/modal.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/dialog.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/multi-stage.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/modals/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/centered-box.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/widget-container.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/layouts/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/two-column.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/widgets/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/separators/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/calendar/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/logo/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/stages/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/title/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/assets/theme.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/tm-designs/dist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/dayjs/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/DOMUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createBrowserHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createHashHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/createMemoryHistory.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/LocationUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/PathUtils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/history/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-router-dom/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/types/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-logic/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-compare/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/utils.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/lib/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/typescript-tuple/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@redux-saga/core/effects.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/saga.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/rest-actions.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/types.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/reducer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-utility-belt/dist/types/redux-utility-belt.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/types/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/auth.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/resources.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/reducers/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/login.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/auth/ensure-auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/classnames/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/menus/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/logo.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/sidebar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/navbar.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/string.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/styled-components/macro.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.styles.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/components/widgets/table.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/redux-saga/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/axios/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/axios.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/store/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/resource.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/pagination.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/styles.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/profile.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/auth.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/finance.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/reserves.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/actions.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/user/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/app.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/serviceWorker.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/index.tsx
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/assert.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/async_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/buffer.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/child_process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/cluster.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/console.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/constants.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/crypto.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dgram.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/dns.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/domain.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/fs.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/http2.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/https.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/inspector.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/module.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/net.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/os.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/path.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/perf_hooks.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/process.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/punycode.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/querystring.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/readline.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/repl.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/stream.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/string_decoder.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/timers.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tls.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/trace_events.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/tty.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/url.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/v8.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/vm.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/worker_threads.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/zlib.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/base.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/util.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/node/ts3.2/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/react-scripts/lib/react-app.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/react-app-env.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/api/index.test.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/assets/images/features/index.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/src/utils/hooks/debug.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest-diff/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/jest/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/q/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-tooltip/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/rc-slider/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/globals.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/legacy-properties.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/BatchedBridge.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/Devtools.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/react-native/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/tapable/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/unist/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile-message/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/vfile/index.d.ts
	/home/mahdi/Documents/Projects/tripe-ma/admin/node_modules/@types/webpack-env/index.d.ts

Info 98   [14:28:20.104] -----------------------------------------------
Info 98   [14:28:20.104] Open files: 
Info 98   [14:28:20.104] 	FileName: /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx ProjectRootPath: /home/mahdi/Documents/Projects/tripe-ma/admin
Info 98   [14:28:20.104] 		Projects: /home/mahdi/Documents/Projects/tripe-ma/admin/tsconfig.json
Info 98   [14:28:20.104] got projects updated in background, updating diagnostics for /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx
Info 99   [14:28:20.104] event:
    {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"]}}
Info 100  [14:28:20.107] request:
    {"seq":7,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","startLine":76,"startOffset":17,"endLine":76,"endOffset":17}}
Perf 101  [14:28:20.146] 7::getApplicableRefactors: elapsed time (in milliseconds) 39.2114
Info 102  [14:28:20.146] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":7,"success":true,"body":[]}
Info 103  [14:28:20.185] request:
    {"seq":8,"type":"request","command":"navtree","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"}}
Perf 104  [14:28:20.191] 8::navtree: elapsed time (in milliseconds) 6.3001
Info 105  [14:28:20.191] response:
    {"seq":0,"type":"response","command":"navtree","request_seq":8,"success":true,"body":{"text":"\"index\"","kind":"module","kindModifiers":"","spans":[{"start":{"line":1,"offset":1},"end":{"line":114,"offset":4}}],"childItems":[{"text":"Box","kind":"const","kindModifiers":"","spans":[{"start":{"line":19,"offset":9},"end":{"line":19,"offset":12}}],"nameSpan":{"start":{"line":19,"offset":9},"end":{"line":19,"offset":12}}},{"text":"Button","kind":"const","kindModifiers":"","spans":[{"start":{"line":20,"offset":9},"end":{"line":20,"offset":15}}],"nameSpan":{"start":{"line":20,"offset":9},"end":{"line":20,"offset":15}}},{"text":"ButtonRadio","kind":"const","kindModifiers":"","spans":[{"start":{"line":20,"offset":17},"end":{"line":20,"offset":28}}],"nameSpan":{"start":{"line":20,"offset":17},"end":{"line":20,"offset":28}}},{"text":"connect","kind":"alias","kindModifiers":"","spans":[{"start":{"line":2,"offset":10},"end":{"line":2,"offset":17}}],"nameSpan":{"start":{"line":2,"offset":10},"end":{"line":2,"offset":17}}},{"text":"connect() callback","kind":"function","kindModifiers":"","spans":[{"start":{"line":111,"offset":11},"end":{"line":113,"offset":5}}]},{"text":"fetchResource","kind":"alias","kindModifiers":"","spans":[{"start":{"line":11,"offset":3},"end":{"line":11,"offset":16}}],"nameSpan":{"start":{"line":11,"offset":3},"end":{"line":11,"offset":16}}},{"text":"Form","kind":"alias","kindModifiers":"","spans":[{"start":{"line":7,"offset":19},"end":{"line":7,"offset":23}}],"nameSpan":{"start":{"line":7,"offset":19},"end":{"line":7,"offset":23}}},{"text":"Input","kind":"const","kindModifiers":"","spans":[{"start":{"line":20,"offset":30},"end":{"line":20,"offset":35}}],"nameSpan":{"start":{"line":20,"offset":30},"end":{"line":20,"offset":35}}},{"text":"IState","kind":"alias","kindModifiers":"","spans":[{"start":{"line":5,"offset":10},"end":{"line":5,"offset":16}}],"nameSpan":{"start":{"line":5,"offset":10},"end":{"line":5,"offset":16}}},{"text":"Layouts","kind":"alias","kindModifiers":"","spans":[{"start":{"line":7,"offset":10},"end":{"line":7,"offset":17}}],"nameSpan":{"start":{"line":7,"offset":10},"end":{"line":7,"offset":17}}},{"text":"PageItemCountContainer","kind":"alias","kindModifiers":"","spans":[{"start":{"line":17,"offset":31},"end":{"line":17,"offset":53}}],"nameSpan":{"start":{"line":17,"offset":31},"end":{"line":17,"offset":53}}},{"text":"PageSearchContainer","kind":"alias","kindModifiers":"","spans":[{"start":{"line":17,"offset":10},"end":{"line":17,"offset":29}}],"nameSpan":{"start":{"line":17,"offset":10},"end":{"line":17,"offset":29}}},{"text":"parseAPI","kind":"alias","kindModifiers":"","spans":[{"start":{"line":13,"offset":21},"end":{"line":13,"offset":29}}],"nameSpan":{"start":{"line":13,"offset":21},"end":{"line":13,"offset":29}}},{"text":"React","kind":"alias","kindModifiers":"","spans":[{"start":{"line":1,"offset":8},"end":{"line":1,"offset":18}}],"nameSpan":{"start":{"line":1,"offset":13},"end":{"line":1,"offset":18}}},{"text":"Resources","kind":"alias","kindModifiers":"","spans":[{"start":{"line":13,"offset":10},"end":{"line":13,"offset":19}}],"nameSpan":{"start":{"line":13,"offset":10},"end":{"line":13,"offset":19}}},{"text":"ResourcesState","kind":"alias","kindModifiers":"","spans":[{"start":{"line":9,"offset":3},"end":{"line":9,"offset":17}}],"nameSpan":{"start":{"line":9,"offset":3},"end":{"line":9,"offset":17}}},{"text":"ResourceState","kind":"alias","kindModifiers":"","spans":[{"start":{"line":10,"offset":3},"end":{"line":10,"offset":16}}],"nameSpan":{"start":{"line":10,"offset":3},"end":{"line":10,"offset":16}}},{"text":"RouteComponentProps","kind":"alias","kindModifiers":"","spans":[{"start":{"line":3,"offset":22},"end":{"line":3,"offset":41}}],"nameSpan":{"start":{"line":3,"offset":22},"end":{"line":3,"offset":41}}},{"text":"store","kind":"alias","kindModifiers":"","spans":[{"start":{"line":15,"offset":8},"end":{"line":15,"offset":13}}],"nameSpan":{"start":{"line":15,"offset":8},"end":{"line":15,"offset":13}}},{"text":"tableCellMap","kind":"const","kindModifiers":"","spans":[{"start":{"line":39,"offset":7},"end":{"line":44,"offset":2}}],"nameSpan":{"start":{"line":39,"offset":7},"end":{"line":39,"offset":19}}},{"text":"tableColumns","kind":"const","kindModifiers":"","spans":[{"start":{"line":28,"offset":7},"end":{"line":37,"offset":2}}],"nameSpan":{"start":{"line":28,"offset":7},"end":{"line":28,"offset":19}}},{"text":"TableWidget","kind":"alias","kindModifiers":"","spans":[{"start":{"line":6,"offset":8},"end":{"line":6,"offset":19}}],"nameSpan":{"start":{"line":6,"offset":8},"end":{"line":6,"offset":19}}},{"text":"uesResource","kind":"alias","kindModifiers":"","spans":[{"start":{"line":14,"offset":10},"end":{"line":14,"offset":21}}],"nameSpan":{"start":{"line":14,"offset":10},"end":{"line":14,"offset":21}}},{"text":"usePagination","kind":"alias","kindModifiers":"","spans":[{"start":{"line":16,"offset":10},"end":{"line":16,"offset":23}}],"nameSpan":{"start":{"line":16,"offset":10},"end":{"line":16,"offset":23}}},{"text":"Users","kind":"const","kindModifiers":"","spans":[{"start":{"line":46,"offset":7},"end":{"line":108,"offset":2}}],"nameSpan":{"start":{"line":46,"offset":7},"end":{"line":46,"offset":12}},"childItems":[{"text":"<function>","kind":"function","kindModifiers":"","spans":[{"start":{"line":104,"offset":25},"end":{"line":104,"offset":72}}]},{"text":"history","kind":"var","kindModifiers":"","spans":[{"start":{"line":48,"offset":3},"end":{"line":48,"offset":10}}],"nameSpan":{"start":{"line":48,"offset":3},"end":{"line":48,"offset":10}}},{"text":"itemCount","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":11},"end":{"line":54,"offset":20}}],"nameSpan":{"start":{"line":54,"offset":11},"end":{"line":54,"offset":20}}},{"text":"page","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":36},"end":{"line":54,"offset":40}}],"nameSpan":{"start":{"line":54,"offset":36},"end":{"line":54,"offset":40}}},{"text":"props","kind":"var","kindModifiers":"","spans":[{"start":{"line":49,"offset":3},"end":{"line":49,"offset":11}}],"nameSpan":{"start":{"line":49,"offset":6},"end":{"line":49,"offset":11}}},{"text":"query","kind":"const","kindModifiers":"","spans":[{"start":{"line":52,"offset":10},"end":{"line":52,"offset":15}}],"nameSpan":{"start":{"line":52,"offset":10},"end":{"line":52,"offset":15}}},{"text":"setItemCount","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":22},"end":{"line":54,"offset":34}}],"nameSpan":{"start":{"line":54,"offset":22},"end":{"line":54,"offset":34}}},{"text":"setPage","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":42},"end":{"line":54,"offset":49}}],"nameSpan":{"start":{"line":54,"offset":42},"end":{"line":54,"offset":49}}},{"text":"setQuery","kind":"const","kindModifiers":"","spans":[{"start":{"line":52,"offset":17},"end":{"line":52,"offset":25}}],"nameSpan":{"start":{"line":52,"offset":17},"end":{"line":52,"offset":25}}},{"text":"users","kind":"var","kindModifiers":"","spans":[{"start":{"line":47,"offset":3},"end":{"line":47,"offset":8}}],"nameSpan":{"start":{"line":47,"offset":3},"end":{"line":47,"offset":8}}}]},{"text":"usersEndpoint","kind":"const","kindModifiers":"","spans":[{"start":{"line":26,"offset":7},"end":{"line":26,"offset":51}}],"nameSpan":{"start":{"line":26,"offset":7},"end":{"line":26,"offset":20}}},{"text":"UsersProps","kind":"interface","kindModifiers":"export","spans":[{"start":{"line":22,"offset":1},"end":{"line":24,"offset":2}}],"nameSpan":{"start":{"line":22,"offset":18},"end":{"line":22,"offset":28}},"childItems":[{"text":"users","kind":"property","kindModifiers":"","spans":[{"start":{"line":23,"offset":3},"end":{"line":23,"offset":34}}],"nameSpan":{"start":{"line":23,"offset":3},"end":{"line":23,"offset":8}}}]},{"text":"withRouter","kind":"alias","kindModifiers":"","spans":[{"start":{"line":3,"offset":10},"end":{"line":3,"offset":20}}],"nameSpan":{"start":{"line":3,"offset":10},"end":{"line":3,"offset":20}}}]}}
Info 106  [14:28:20.191] request:
    {"seq":9,"type":"request","command":"configure","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","formatOptions":{"tabSize":2,"indentSize":2,"convertTabsToSpaces":true,"newLineCharacter":"\n","insertSpaceAfterCommaDelimiter":true,"insertSpaceAfterConstructor":false,"insertSpaceAfterSemicolonInForStatements":true,"insertSpaceBeforeAndAfterBinaryOperators":true,"insertSpaceAfterKeywordsInControlFlowStatements":true,"insertSpaceAfterFunctionKeywordForAnonymousFunctions":true,"insertSpaceBeforeFunctionParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":true,"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":false,"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":false,"insertSpaceAfterTypeAssertion":false,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false},"preferences":{"quotePreference":"auto","allowTextChangesInNewFiles":true,"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 107  [14:28:20.192] Host configuration update for file /home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx
Info 108  [14:28:20.192] response:
    {"seq":0,"type":"response","command":"configure","request_seq":9,"success":true}
Perf 109  [14:28:20.192] 9::configure: async elapsed time (in milliseconds) 0.5780
Info 110  [14:28:20.198] request:
    {"seq":10,"type":"request","command":"getOutliningSpans","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"}}
Perf 111  [14:28:20.202] 10::getOutliningSpans: elapsed time (in milliseconds) 3.8169
Info 112  [14:28:20.202] response:
    {"seq":0,"type":"response","command":"getOutliningSpans","request_seq":10,"success":true,"body":[{"textSpan":{"start":{"line":1,"offset":1},"end":{"line":17,"offset":72}},"hintSpan":{"start":{"line":1,"offset":1},"end":{"line":17,"offset":72}},"bannerText":"...","autoCollapse":false,"kind":"imports"},{"textSpan":{"start":{"line":22,"offset":56},"end":{"line":24,"offset":2}},"hintSpan":{"start":{"line":22,"offset":1},"end":{"line":24,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":28,"offset":21},"end":{"line":37,"offset":2}},"hintSpan":{"start":{"line":28,"offset":22},"end":{"line":37,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":39,"offset":72},"end":{"line":44,"offset":2}},"hintSpan":{"start":{"line":39,"offset":22},"end":{"line":44,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":40,"offset":20},"end":{"line":42,"offset":4}},"hintSpan":{"start":{"line":40,"offset":3},"end":{"line":42,"offset":4}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":41,"offset":11},"end":{"line":41,"offset":53}},"hintSpan":{"start":{"line":41,"offset":12},"end":{"line":41,"offset":53}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":50,"offset":6},"end":{"line":108,"offset":2}},"hintSpan":{"start":{"line":46,"offset":52},"end":{"line":108,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":59,"offset":23},"end":{"line":62,"offset":10}},"hintSpan":{"start":{"line":59,"offset":23},"end":{"line":62,"offset":10}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":61,"offset":21},"end":{"line":61,"offset":39}},"hintSpan":{"start":{"line":61,"offset":22},"end":{"line":61,"offset":39}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":69,"offset":5},"end":{"line":106,"offset":11}},"hintSpan":{"start":{"line":69,"offset":5},"end":{"line":106,"offset":11}},"bannerText":"<Box>...</Box>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":69,"offset":10},"end":{"line":69,"offset":16}},"hintSpan":{"start":{"line":69,"offset":10},"end":{"line":69,"offset":16}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":70,"offset":7},"end":{"line":99,"offset":13}},"hintSpan":{"start":{"line":70,"offset":7},"end":{"line":99,"offset":13}},"bannerText":"<Box>...</Box>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":70,"offset":12},"end":{"line":70,"offset":60}},"hintSpan":{"start":{"line":70,"offset":12},"end":{"line":70,"offset":60}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":71,"offset":9},"end":{"line":77,"offset":31}},"hintSpan":{"start":{"line":71,"offset":9},"end":{"line":77,"offset":31}},"bannerText":"<PageSearchContainer>...</PageSearchContainer>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":72,"offset":18},"end":{"line":72,"offset":76}},"hintSpan":{"start":{"line":72,"offset":18},"end":{"line":72,"offset":76}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":72,"offset":25},"end":{"line":72,"offset":61}},"hintSpan":{"start":{"line":72,"offset":25},"end":{"line":72,"offset":61}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":73,"offset":11},"end":{"line":76,"offset":17}},"hintSpan":{"start":{"line":73,"offset":11},"end":{"line":76,"offset":17}},"bannerText":"<div>...</div>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":73,"offset":16},"end":{"line":73,"offset":35}},"hintSpan":{"start":{"line":73,"offset":16},"end":{"line":73,"offset":35}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":74,"offset":13},"end":{"line":74,"offset":36}},"hintSpan":{"start":{"line":74,"offset":13},"end":{"line":74,"offset":36}},"bannerText":"<span>...</span>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":75,"offset":13},"end":{"line":75,"offset":54}},"hintSpan":{"start":{"line":75,"offset":13},"end":{"line":75,"offset":54}},"bannerText":"<Button>...</Button>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":75,"offset":21},"end":{"line":75,"offset":28}},"hintSpan":{"start":{"line":75,"offset":21},"end":{"line":75,"offset":28}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":78,"offset":9},"end":{"line":98,"offset":34}},"hintSpan":{"start":{"line":78,"offset":9},"end":{"line":98,"offset":34}},"bannerText":"<PageItemCountContainer>...</PageItemCountContainer>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":78,"offset":33},"end":{"line":78,"offset":52}},"hintSpan":{"start":{"line":78,"offset":33},"end":{"line":78,"offset":52}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":79,"offset":11},"end":{"line":79,"offset":54}},"hintSpan":{"start":{"line":79,"offset":11},"end":{"line":79,"offset":54}},"bannerText":"<span>...</span>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":79,"offset":17},"end":{"line":79,"offset":34}},"hintSpan":{"start":{"line":79,"offset":17},"end":{"line":79,"offset":34}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":81,"offset":13},"end":{"line":84,"offset":23}},"hintSpan":{"start":{"line":81,"offset":13},"end":{"line":84,"offset":23}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":82,"offset":20},"end":{"line":82,"offset":64}},"hintSpan":{"start":{"line":82,"offset":20},"end":{"line":82,"offset":64}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":87,"offset":13},"end":{"line":90,"offset":23}},"hintSpan":{"start":{"line":87,"offset":13},"end":{"line":90,"offset":23}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":88,"offset":20},"end":{"line":88,"offset":64}},"hintSpan":{"start":{"line":88,"offset":20},"end":{"line":88,"offset":64}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":93,"offset":13},"end":{"line":96,"offset":23}},"hintSpan":{"start":{"line":93,"offset":13},"end":{"line":96,"offset":23}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":94,"offset":20},"end":{"line":94,"offset":64}},"hintSpan":{"start":{"line":94,"offset":20},"end":{"line":94,"offset":64}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":101,"offset":9},"end":{"line":104,"offset":73}},"hintSpan":{"start":{"line":101,"offset":9},"end":{"line":104,"offset":73}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":111,"offset":31},"end":{"line":113,"offset":4}},"hintSpan":{"start":{"line":111,"offset":31},"end":{"line":113,"offset":4}},"bannerText":"...","autoCollapse":false,"kind":"code"}]}
Info 113  [14:28:20.202] request:
    {"seq":14,"type":"request","command":"quickinfo","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","line":51,"offset":5}}
Info 114  [14:28:20.233] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":14,"success":true,"body":{"canceled":true}}
Info 115  [14:28:20.234] request:
    {"seq":15,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"]}}
Perf 116  [14:28:20.234] 15::geterr: async elapsed time (in milliseconds) 0.6562
Info 117  [14:28:20.234] request:
    {"seq":16,"type":"request","command":"navtree","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"}}
Perf 118  [14:28:20.236] 16::navtree: elapsed time (in milliseconds) 1.7056
Info 119  [14:28:20.236] response:
    {"seq":0,"type":"response","command":"navtree","request_seq":16,"success":true,"body":{"text":"\"index\"","kind":"module","kindModifiers":"","spans":[{"start":{"line":1,"offset":1},"end":{"line":114,"offset":4}}],"childItems":[{"text":"Box","kind":"const","kindModifiers":"","spans":[{"start":{"line":19,"offset":9},"end":{"line":19,"offset":12}}],"nameSpan":{"start":{"line":19,"offset":9},"end":{"line":19,"offset":12}}},{"text":"Button","kind":"const","kindModifiers":"","spans":[{"start":{"line":20,"offset":9},"end":{"line":20,"offset":15}}],"nameSpan":{"start":{"line":20,"offset":9},"end":{"line":20,"offset":15}}},{"text":"ButtonRadio","kind":"const","kindModifiers":"","spans":[{"start":{"line":20,"offset":17},"end":{"line":20,"offset":28}}],"nameSpan":{"start":{"line":20,"offset":17},"end":{"line":20,"offset":28}}},{"text":"connect","kind":"alias","kindModifiers":"","spans":[{"start":{"line":2,"offset":10},"end":{"line":2,"offset":17}}],"nameSpan":{"start":{"line":2,"offset":10},"end":{"line":2,"offset":17}}},{"text":"connect() callback","kind":"function","kindModifiers":"","spans":[{"start":{"line":111,"offset":11},"end":{"line":113,"offset":5}}]},{"text":"fetchResource","kind":"alias","kindModifiers":"","spans":[{"start":{"line":11,"offset":3},"end":{"line":11,"offset":16}}],"nameSpan":{"start":{"line":11,"offset":3},"end":{"line":11,"offset":16}}},{"text":"Form","kind":"alias","kindModifiers":"","spans":[{"start":{"line":7,"offset":19},"end":{"line":7,"offset":23}}],"nameSpan":{"start":{"line":7,"offset":19},"end":{"line":7,"offset":23}}},{"text":"Input","kind":"const","kindModifiers":"","spans":[{"start":{"line":20,"offset":30},"end":{"line":20,"offset":35}}],"nameSpan":{"start":{"line":20,"offset":30},"end":{"line":20,"offset":35}}},{"text":"IState","kind":"alias","kindModifiers":"","spans":[{"start":{"line":5,"offset":10},"end":{"line":5,"offset":16}}],"nameSpan":{"start":{"line":5,"offset":10},"end":{"line":5,"offset":16}}},{"text":"Layouts","kind":"alias","kindModifiers":"","spans":[{"start":{"line":7,"offset":10},"end":{"line":7,"offset":17}}],"nameSpan":{"start":{"line":7,"offset":10},"end":{"line":7,"offset":17}}},{"text":"PageItemCountContainer","kind":"alias","kindModifiers":"","spans":[{"start":{"line":17,"offset":31},"end":{"line":17,"offset":53}}],"nameSpan":{"start":{"line":17,"offset":31},"end":{"line":17,"offset":53}}},{"text":"PageSearchContainer","kind":"alias","kindModifiers":"","spans":[{"start":{"line":17,"offset":10},"end":{"line":17,"offset":29}}],"nameSpan":{"start":{"line":17,"offset":10},"end":{"line":17,"offset":29}}},{"text":"parseAPI","kind":"alias","kindModifiers":"","spans":[{"start":{"line":13,"offset":21},"end":{"line":13,"offset":29}}],"nameSpan":{"start":{"line":13,"offset":21},"end":{"line":13,"offset":29}}},{"text":"React","kind":"alias","kindModifiers":"","spans":[{"start":{"line":1,"offset":8},"end":{"line":1,"offset":18}}],"nameSpan":{"start":{"line":1,"offset":13},"end":{"line":1,"offset":18}}},{"text":"Resources","kind":"alias","kindModifiers":"","spans":[{"start":{"line":13,"offset":10},"end":{"line":13,"offset":19}}],"nameSpan":{"start":{"line":13,"offset":10},"end":{"line":13,"offset":19}}},{"text":"ResourcesState","kind":"alias","kindModifiers":"","spans":[{"start":{"line":9,"offset":3},"end":{"line":9,"offset":17}}],"nameSpan":{"start":{"line":9,"offset":3},"end":{"line":9,"offset":17}}},{"text":"ResourceState","kind":"alias","kindModifiers":"","spans":[{"start":{"line":10,"offset":3},"end":{"line":10,"offset":16}}],"nameSpan":{"start":{"line":10,"offset":3},"end":{"line":10,"offset":16}}},{"text":"RouteComponentProps","kind":"alias","kindModifiers":"","spans":[{"start":{"line":3,"offset":22},"end":{"line":3,"offset":41}}],"nameSpan":{"start":{"line":3,"offset":22},"end":{"line":3,"offset":41}}},{"text":"store","kind":"alias","kindModifiers":"","spans":[{"start":{"line":15,"offset":8},"end":{"line":15,"offset":13}}],"nameSpan":{"start":{"line":15,"offset":8},"end":{"line":15,"offset":13}}},{"text":"tableCellMap","kind":"const","kindModifiers":"","spans":[{"start":{"line":39,"offset":7},"end":{"line":44,"offset":2}}],"nameSpan":{"start":{"line":39,"offset":7},"end":{"line":39,"offset":19}}},{"text":"tableColumns","kind":"const","kindModifiers":"","spans":[{"start":{"line":28,"offset":7},"end":{"line":37,"offset":2}}],"nameSpan":{"start":{"line":28,"offset":7},"end":{"line":28,"offset":19}}},{"text":"TableWidget","kind":"alias","kindModifiers":"","spans":[{"start":{"line":6,"offset":8},"end":{"line":6,"offset":19}}],"nameSpan":{"start":{"line":6,"offset":8},"end":{"line":6,"offset":19}}},{"text":"uesResource","kind":"alias","kindModifiers":"","spans":[{"start":{"line":14,"offset":10},"end":{"line":14,"offset":21}}],"nameSpan":{"start":{"line":14,"offset":10},"end":{"line":14,"offset":21}}},{"text":"usePagination","kind":"alias","kindModifiers":"","spans":[{"start":{"line":16,"offset":10},"end":{"line":16,"offset":23}}],"nameSpan":{"start":{"line":16,"offset":10},"end":{"line":16,"offset":23}}},{"text":"Users","kind":"const","kindModifiers":"","spans":[{"start":{"line":46,"offset":7},"end":{"line":108,"offset":2}}],"nameSpan":{"start":{"line":46,"offset":7},"end":{"line":46,"offset":12}},"childItems":[{"text":"<function>","kind":"function","kindModifiers":"","spans":[{"start":{"line":104,"offset":25},"end":{"line":104,"offset":72}}]},{"text":"history","kind":"var","kindModifiers":"","spans":[{"start":{"line":48,"offset":3},"end":{"line":48,"offset":10}}],"nameSpan":{"start":{"line":48,"offset":3},"end":{"line":48,"offset":10}}},{"text":"itemCount","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":11},"end":{"line":54,"offset":20}}],"nameSpan":{"start":{"line":54,"offset":11},"end":{"line":54,"offset":20}}},{"text":"page","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":36},"end":{"line":54,"offset":40}}],"nameSpan":{"start":{"line":54,"offset":36},"end":{"line":54,"offset":40}}},{"text":"props","kind":"var","kindModifiers":"","spans":[{"start":{"line":49,"offset":3},"end":{"line":49,"offset":11}}],"nameSpan":{"start":{"line":49,"offset":6},"end":{"line":49,"offset":11}}},{"text":"query","kind":"const","kindModifiers":"","spans":[{"start":{"line":52,"offset":10},"end":{"line":52,"offset":15}}],"nameSpan":{"start":{"line":52,"offset":10},"end":{"line":52,"offset":15}}},{"text":"setItemCount","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":22},"end":{"line":54,"offset":34}}],"nameSpan":{"start":{"line":54,"offset":22},"end":{"line":54,"offset":34}}},{"text":"setPage","kind":"const","kindModifiers":"","spans":[{"start":{"line":54,"offset":42},"end":{"line":54,"offset":49}}],"nameSpan":{"start":{"line":54,"offset":42},"end":{"line":54,"offset":49}}},{"text":"setQuery","kind":"const","kindModifiers":"","spans":[{"start":{"line":52,"offset":17},"end":{"line":52,"offset":25}}],"nameSpan":{"start":{"line":52,"offset":17},"end":{"line":52,"offset":25}}},{"text":"users","kind":"var","kindModifiers":"","spans":[{"start":{"line":47,"offset":3},"end":{"line":47,"offset":8}}],"nameSpan":{"start":{"line":47,"offset":3},"end":{"line":47,"offset":8}}}]},{"text":"usersEndpoint","kind":"const","kindModifiers":"","spans":[{"start":{"line":26,"offset":7},"end":{"line":26,"offset":51}}],"nameSpan":{"start":{"line":26,"offset":7},"end":{"line":26,"offset":20}}},{"text":"UsersProps","kind":"interface","kindModifiers":"export","spans":[{"start":{"line":22,"offset":1},"end":{"line":24,"offset":2}}],"nameSpan":{"start":{"line":22,"offset":18},"end":{"line":22,"offset":28}},"childItems":[{"text":"users","kind":"property","kindModifiers":"","spans":[{"start":{"line":23,"offset":3},"end":{"line":23,"offset":34}}],"nameSpan":{"start":{"line":23,"offset":3},"end":{"line":23,"offset":8}}}]},{"text":"withRouter","kind":"alias","kindModifiers":"","spans":[{"start":{"line":3,"offset":10},"end":{"line":3,"offset":20}}],"nameSpan":{"start":{"line":3,"offset":10},"end":{"line":3,"offset":20}}}]}}
Info 120  [14:28:20.237] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","diagnostics":[]}}
Info 121  [14:29:38.745] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":15}}
Info 122  [14:29:38.746] request:
    {"seq":17,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"]}}
Info 123  [14:29:38.746] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":17}}
Perf 124  [14:29:38.746] 17::geterr: async elapsed time (in milliseconds) 0.1361
Info 125  [14:29:38.746] request:
    {"seq":18,"type":"request","command":"quickinfo","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","line":51,"offset":5}}
Perf 126  [14:29:38.763] 18::quickinfo: elapsed time (in milliseconds) 16.7142
Info 127  [14:29:38.763] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":18,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":51,"offset":3},"end":{"line":51,"offset":14},"displayString":"(alias) uesResource(storeData: Resource, resource: Resources | Resources[], params?: Dictionary<string>): void\nimport uesResource","documentation":"","tags":[]}}
Info 128  [14:29:38.763] request:
    {"seq":19,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"]}}
Perf 129  [14:29:38.763] 19::geterr: async elapsed time (in milliseconds) 0.1706
Info 130  [14:29:38.763] request:
    {"seq":20,"type":"request","command":"getOutliningSpans","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"}}
Perf 131  [14:29:38.765] 20::getOutliningSpans: elapsed time (in milliseconds) 1.9185
Info 132  [14:29:38.765] response:
    {"seq":0,"type":"response","command":"getOutliningSpans","request_seq":20,"success":true,"body":[{"textSpan":{"start":{"line":1,"offset":1},"end":{"line":17,"offset":72}},"hintSpan":{"start":{"line":1,"offset":1},"end":{"line":17,"offset":72}},"bannerText":"...","autoCollapse":false,"kind":"imports"},{"textSpan":{"start":{"line":22,"offset":56},"end":{"line":24,"offset":2}},"hintSpan":{"start":{"line":22,"offset":1},"end":{"line":24,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":28,"offset":21},"end":{"line":37,"offset":2}},"hintSpan":{"start":{"line":28,"offset":22},"end":{"line":37,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":39,"offset":72},"end":{"line":44,"offset":2}},"hintSpan":{"start":{"line":39,"offset":22},"end":{"line":44,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":40,"offset":20},"end":{"line":42,"offset":4}},"hintSpan":{"start":{"line":40,"offset":3},"end":{"line":42,"offset":4}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":41,"offset":11},"end":{"line":41,"offset":53}},"hintSpan":{"start":{"line":41,"offset":12},"end":{"line":41,"offset":53}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":50,"offset":6},"end":{"line":108,"offset":2}},"hintSpan":{"start":{"line":46,"offset":52},"end":{"line":108,"offset":2}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":59,"offset":23},"end":{"line":62,"offset":10}},"hintSpan":{"start":{"line":59,"offset":23},"end":{"line":62,"offset":10}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":61,"offset":21},"end":{"line":61,"offset":39}},"hintSpan":{"start":{"line":61,"offset":22},"end":{"line":61,"offset":39}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":69,"offset":5},"end":{"line":106,"offset":11}},"hintSpan":{"start":{"line":69,"offset":5},"end":{"line":106,"offset":11}},"bannerText":"<Box>...</Box>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":69,"offset":10},"end":{"line":69,"offset":16}},"hintSpan":{"start":{"line":69,"offset":10},"end":{"line":69,"offset":16}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":70,"offset":7},"end":{"line":99,"offset":13}},"hintSpan":{"start":{"line":70,"offset":7},"end":{"line":99,"offset":13}},"bannerText":"<Box>...</Box>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":70,"offset":12},"end":{"line":70,"offset":60}},"hintSpan":{"start":{"line":70,"offset":12},"end":{"line":70,"offset":60}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":71,"offset":9},"end":{"line":77,"offset":31}},"hintSpan":{"start":{"line":71,"offset":9},"end":{"line":77,"offset":31}},"bannerText":"<PageSearchContainer>...</PageSearchContainer>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":72,"offset":18},"end":{"line":72,"offset":76}},"hintSpan":{"start":{"line":72,"offset":18},"end":{"line":72,"offset":76}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":72,"offset":25},"end":{"line":72,"offset":61}},"hintSpan":{"start":{"line":72,"offset":25},"end":{"line":72,"offset":61}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":73,"offset":11},"end":{"line":76,"offset":17}},"hintSpan":{"start":{"line":73,"offset":11},"end":{"line":76,"offset":17}},"bannerText":"<div>...</div>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":73,"offset":16},"end":{"line":73,"offset":35}},"hintSpan":{"start":{"line":73,"offset":16},"end":{"line":73,"offset":35}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":74,"offset":13},"end":{"line":74,"offset":36}},"hintSpan":{"start":{"line":74,"offset":13},"end":{"line":74,"offset":36}},"bannerText":"<span>...</span>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":75,"offset":13},"end":{"line":75,"offset":54}},"hintSpan":{"start":{"line":75,"offset":13},"end":{"line":75,"offset":54}},"bannerText":"<Button>...</Button>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":75,"offset":21},"end":{"line":75,"offset":28}},"hintSpan":{"start":{"line":75,"offset":21},"end":{"line":75,"offset":28}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":78,"offset":9},"end":{"line":98,"offset":34}},"hintSpan":{"start":{"line":78,"offset":9},"end":{"line":98,"offset":34}},"bannerText":"<PageItemCountContainer>...</PageItemCountContainer>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":78,"offset":33},"end":{"line":78,"offset":52}},"hintSpan":{"start":{"line":78,"offset":33},"end":{"line":78,"offset":52}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":79,"offset":11},"end":{"line":79,"offset":54}},"hintSpan":{"start":{"line":79,"offset":11},"end":{"line":79,"offset":54}},"bannerText":"<span>...</span>","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":79,"offset":17},"end":{"line":79,"offset":34}},"hintSpan":{"start":{"line":79,"offset":17},"end":{"line":79,"offset":34}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":81,"offset":13},"end":{"line":84,"offset":23}},"hintSpan":{"start":{"line":81,"offset":13},"end":{"line":84,"offset":23}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":82,"offset":20},"end":{"line":82,"offset":64}},"hintSpan":{"start":{"line":82,"offset":20},"end":{"line":82,"offset":64}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":87,"offset":13},"end":{"line":90,"offset":23}},"hintSpan":{"start":{"line":87,"offset":13},"end":{"line":90,"offset":23}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":88,"offset":20},"end":{"line":88,"offset":64}},"hintSpan":{"start":{"line":88,"offset":20},"end":{"line":88,"offset":64}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":93,"offset":13},"end":{"line":96,"offset":23}},"hintSpan":{"start":{"line":93,"offset":13},"end":{"line":96,"offset":23}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":94,"offset":20},"end":{"line":94,"offset":64}},"hintSpan":{"start":{"line":94,"offset":20},"end":{"line":94,"offset":64}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":101,"offset":9},"end":{"line":104,"offset":73}},"hintSpan":{"start":{"line":101,"offset":9},"end":{"line":104,"offset":73}},"bannerText":"...","autoCollapse":false,"kind":"code"},{"textSpan":{"start":{"line":111,"offset":31},"end":{"line":113,"offset":4}},"hintSpan":{"start":{"line":111,"offset":31},"end":{"line":113,"offset":4}},"bannerText":"...","autoCollapse":false,"kind":"code"}]}
Info 133  [14:29:38.766] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","diagnostics":[]}}
Info 134  [14:31:6.120] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":19}}
Info 135  [14:31:6.120] request:
    {"seq":21,"type":"request","command":"quickinfo","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","line":51,"offset":5}}
Info 136  [14:31:6.139] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":21,"success":true,"body":{"canceled":true}}
Info 137  [14:31:6.139] request:
    {"seq":23,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","startLine":60,"startOffset":71,"endLine":60,"endOffset":71}}
Perf 138  [14:31:6.140] 23::getApplicableRefactors: elapsed time (in milliseconds) 1.2556
Info 139  [14:31:6.141] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":23,"success":true,"body":[]}
Info 140  [14:31:6.141] request:
    {"seq":24,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx"]}}
Perf 141  [14:31:6.141] 24::geterr: async elapsed time (in milliseconds) 0.1764
Info 142  [14:31:6.143] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/mahdi/Documents/Projects/tripe-ma/admin/src/pages/dashboard/users/index.tsx","diagnostics":[]}}

To add even more information, here is my tsconfig file:

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "preserve",
    "strictNullChecks": false,
    "noImplicitAny": false
  },
  "include": ["src"]
}

@ReeganExE
Copy link

ReeganExE commented Apr 10, 2019

image
I have the same issue. --disable-extensions didn't work.

Update

It has issue with @typedef in my project. Temporary add this flag to the VS Code settings and the CPU usage goes down.

"typescript.disableAutomaticTypeAcquisition": true

See microsoft/TypeScript#22702 (comment)

@rogerbright
Copy link

I'm having this issue as well. There are no @typdefs in my project, no extensions installed, and I've tried the "typescript.disableAutomaticTypeAcquisition": true.

The only thing that seems to help (from https://stackoverflow.com/questions/52935211/disable-tsserver-for-visual-studio-code) is:

View -> Extensions -> "..." -> "show built-in extensions" ->
Features -> "TypeScript and JavaScript..." -> gear icon -> Disable

Then restart visual studio code

@laila-vinson
Copy link

#71829 (comment) solved it for me

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
info-needed Issue requires more information from poster
Projects
None yet
Development

No branches or pull requests

11 participants