-
Notifications
You must be signed in to change notification settings - Fork 29.3k
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
TSServer exited #191441
Comments
Possibly historically related: #161291, #171156 Related on Stack Overflow: Error upon starting tsserver on viual studio on windows |
What does your javascript or typescript project look like? Are you able to share it? |
@mjbvz I'm afraid not, I have access but not ownership of the code to publish. |
well, you could always create a minimal reproducible example |
I have this issue too on VS Code versions: 1.81.1, 1.82.0 and 1.83.0 (preview).
For now it helps to disable the Deno extension while I'm working on non-Deno files. UPD: Also it helped to rollback the Deno extension to 1-2 versions back. |
I solved it with the method below.
VS Code version: 1.84.1 |
This also works for me, I wonder why? I need my extensions! |
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! |
Is the only solution a VSCode restart..? |
Type: Bug
Starting TSServer outputs the following:
VS Code version: Code 1.81.1 (6c3e3db, 2023-08-09T22:22:42.175Z)
OS version: Windows_NT x64 10.0.22621
Modes:
System Info
canvas_oop_rasterization: disabled_off
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
video_decode: enabled
video_encode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled
webgpu: enabled
Extensions (1)
A/B Experiments
Verbose log
``` Info 0 [09:42:47.243] Starting TS Server Info 1 [09:42:47.243] Version: 5.2.2 Info 2 [09:42:47.243] Arguments: C:\Users\Stratos\AppData\Local\Programs\Microsoft VS Code\Code.exe c:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\typescript\lib\tsserver.js --useInferredProjectPerProjectRoot --enableTelemetry --cancellationPipeName C:\Users\Stratos\AppData\Local\Temp\vscode-typescript\e13ba357c5f584f9decb\tscancellation-2891cba97725d9cf6817.tmp* --logVerbosity verbose --logFile c:\Users\Stratos\AppData\Roaming\Code\logs\20230828T094153\window1\exthost\vscode.typescript-language-features\tsserver-log-0UeFH1\tsserver.log --locale en --noGetErrOnBackgroundUpdate --validateDefaultNpmLocation --useNodeIpc Info 3 [09:42:47.244] Platform: win32 NodeVersion: v16.17.1 CaseSensitive: false Info 4 [09:42:47.244] ServerMode: undefined hasUnknownServerMode: undefined Info 5 [09:42:47.248] Binding... Info 6 [09:42:47.262] event: {"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":15676}} Info 7 [09:42:47.264] request: { "seq": 0, "type": "request", "command": "configure", "arguments": { "hostInfo": "vscode", "preferences": { "providePrefixAndSuffixTextForRename": true, "allowRenameOfImportPath": true, "includePackageJsonAutoImports": "auto" }, "watchOptions": {} } } Info 8 [09:42:47.264] Host information vscode Info 9 [09:42:47.264] Host watch options changed to undefined, it will be take effect for next watches. Info 10 [09:42:47.264] response: {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true} Perf 11 [09:42:47.264] 0::configure: async elapsed time (in milliseconds) 0.9071 Info 12 [09:42:47.265] request: { "seq": 1, "type": "request", "command": "compilerOptionsForInferredProjects", "arguments": { "options": { "module": "ESNext", "moduleResolution": "Node", "target": "ES2020", "jsx": "react", "strictNullChecks": true, "strictFunctionTypes": true, "sourceMap": true, "allowJs": true, "allowSyntheticDefaultImports": true, "allowNonTsExtensions": true, "resolveJsonModule": true } } } Perf 13 [09:42:47.265] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 0.3756 Info 14 [09:42:47.265] response: {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true} Info 15 [09:42:47.265] request: { "seq": 2, "type": "request", "command": "updateOpen", "arguments": { "changedFiles": [], "closedFiles": [], "openFiles": [ { "file": "c:\\Users\\Stratos\\Desktop\\QA\\repos\\lh\\cypress\\support\\commands.ts", "fileContent": "// ***********************************************\r\n// This example commands.js shows you how to\r\n// create various custom commands and overwrite\r\n// existing commands.\r\n//\r\n// For more comprehensive examples of custom\r\n// commands please read more here:\r\n// https://on.cypress.io/custom-commands\r\n// ***********************************************\r\n\r\n\r\nCypress.Commands.overwrite('visit', (orig, url, opt) => {\r\n return orig(url, opt ? (Object.assign({}, opt, { failOnStatusCode: false })) : { failOnStatusCode: false },\r\n ).then((response) => {\r\n if (response.status === 502) {\r\n cy.request({\r\n method: 'GET',\r\n url,\r\n failOnStatusCode: false,\r\n }).then(response => {\r\n cy.task('log', response)\r\n })\r\n }\r\n return response\r\n })\r\n})\r\n namespace Cypress {\r\n dataCy(value: string)\r\n }\r\n", "projectRootPath": "c:\\Users\\Stratos\\Desktop\\QA\\repos\\lh", "scriptKindName": "TS" }, { "file": "c:\\Users\\Stratos\\Desktop\\QA\\repos\\lh\\cypress\\spec\\auth\\signUp.ts", "fileContent": "import selectors from '../../support/selectors'\r\nimport fillForm from '../../support/actions/fillForm'\r\nimport { generalUser } from '../../fixtures/responses/get_users_me'\r\nimport _ from 'lodash'\r\n\r\n\r\ndescribe('Sign up', () => {\r\n it('After signing up successfully the user is in the details step', function () {\r\n const registerFormData = {\r\n emailInput: this.testData.user.customer.email,\r\n passwordInput: this.testData.user.customer.password,\r\n }\r\n const registerExpectedRequest = {\r\n user: {\r\n acceptedTermsConditions: true,\r\n companyNameConcrete: '',\r\n email: this.testData.user.customer.email,\r\n language: 'de',\r\n marketingConsent: false,\r\n password: this.testData.user.customer.password,\r\n utmData: null,\r\n },\r\n mandatoryPass: true,\r\n }\r\n cy.visit('/register/email').then(() => {\r\n fillForm(selectors().signUpForm.formInput, registerFormData)\r\n })\r\n cy.get(selectors().signUpForm.privacyAcceptanceCheckbox).check({\r\n force: true,\r\n })\r\n cy.intercept('POST', '/api/register', (req) => {\r\n expect(req.body).to.deep.include(registerExpectedRequest)\r\n req.reply({\r\n statusCode: 200,\r\n fixture: 'responses/register.json',\r\n })\r\n }).as('request')\r\n cy.intercept('GET', '/api/users/me', generalUser)\r\n cy.intercept('GET', '/api/users', {\r\n fixture: 'responses/get_users.json',\r\n })\r\n cy.get(selectors().signUpForm.submitButton).click()\r\n cy.location('pathname').should('eq', '/register/form')\r\n cy.wait('@request').then((request) => {\r\n cy.log(JSON.stringify(request.request.body))\r\n })\r\n })\r\n\r\n it('After filling the details form the user is in the verification step ', function () {\r\n cy.intercept('GET', 'https://ip2c.org/s', { statusCode: 200, body: '1:DE:DEU:Germany' })\r\n const formData = {\r\n firstNameInput: 'cypress',\r\n lastNameInput: 'customer',\r\n telephoneInput: '+49 5552 368',\r\n }\r\n const leadFormExpectedRequest = {\r\n email: this.testData.user.customer.email,\r\n asCompany: true,\r\n userProperties: {\r\n title: 'Frau',\r\n firstName: formData.firstNameInput,\r\n lastName: formData.lastNameInput,\r\n phoneNumber: formData.telephoneInput,\r\n leadFormCompleted: true,\r\n },\r\n }\r\n cy.intercept('GET', '/api/users/me', {\r\n fixture: 'responses/get_users_me.json',\r\n })\r\n cy.intercept('POST', '/api/leadForm', (req) => {\r\n expect(req.body).to.deep.include(leadFormExpectedRequest)\r\n req.reply({\r\n statusCode: 200,\r\n body: '/product',\r\n })\r\n }).as('registration')\r\n cy.visit('/register/form')\r\n cy.get(selectors().detailsForm.titleSelect).select('Frau')\r\n fillForm(selectors().detailsForm.formInput, formData)\r\n cy.intercept('GET', '/api/users/me', {\r\n fixture: 'responses/get_users_me_confirmation.json',\r\n })\r\n cy.intercept('GET', '/api/loyalty/*', {\r\n fixture: 'responses/get_loyalty_confirmation.json',\r\n })\r\n cy.intercept('GET', '/api/loyalty/threshold/LEVEL_2', { statusCode: 200 })\r\n cy.get(selectors().detailsForm.submitButton).click()\r\n cy.location('pathname').should('eq', '/register/confirm-email')\r\n cy.wait('@registration').then((request) => {\r\n cy.log(JSON.stringify(request.request.body))\r\n })\r\n })\r\n})\r\n", "projectRootPath": "c:\\Users\\Stratos\\Desktop\\QA\\repos\\lh", "scriptKindName": "TS" } ] } } Info 16 [09:42:47.267] Search path: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support Info 17 [09:42:47.269] For info: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts :: Config file name: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json Info 18 [09:42:47.269] Creating configuration project c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json Info 19 [09:42:47.271] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Config file Info 20 [09:42:47.272] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json","reason":"Creating possible configured project for c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts to open"}} Info 21 [09:42:47.519] Config: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json : { "rootNames": [ "c:/Users/Stratos/Desktop/QA/repos/lh/cypress/fixtures/responses/get_users_me.ts", "c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts", "c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts", "c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/index.ts" ], "options": { "target": 1, "lib": [ "lib.es5.d.ts", "lib.dom.d.ts" ], "types": [ "cypress", "node" ], "configFilePath": "c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json" } } Info 22 [09:42:47.520] DirectoryWatcher:: Added:: WatchInfo: c:/users/stratos/desktop/qa/repos/lh/cypress 1 undefined Config: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Wild card directory Info 23 [09:42:47.520] c for path c:/users/stratos/desktop/qa/repos/lh/cypress not found in cache... Info 24 [09:42:47.520] Starting C:\Users\Stratos\AppData\Local\Programs\Microsoft VS Code\Code.exe with args: ["c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/watchGuard.js","c:/users/stratos/desktop/qa/repos/lh/cypress"] Info 25 [09:42:47.643] WatchGuard for path c:/users/stratos/desktop/qa/repos/lh/cypress returned: OK Info 26 [09:42:47.644] Elapsed:: 124.28779999911785ms DirectoryWatcher:: Added:: WatchInfo: c:/users/stratos/desktop/qa/repos/lh/cypress 1 undefined Config: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Wild card directory Info 27 [09:42:47.645] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/fixtures/responses/get_users_me.ts 500 undefined WatchType: Closed Script info Info 28 [09:42:47.646] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/index.ts 500 undefined WatchType: Closed Script info Info 29 [09:42:47.647] Starting updateGraphWorker: Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json Info 30 [09:42:47.661] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/IUser.ts 500 undefined WatchType: Closed Script info Info 31 [09:42:47.663] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/ICompany.ts 500 undefined WatchType: Closed Script info Info 32 [09:42:47.664] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/ICompanyBillingAddress.ts 500 undefined WatchType: Closed Script info Info 33 [09:42:47.666] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/enums.ts 500 undefined WatchType: Closed Script info Info 34 [09:42:47.671] FileWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/ICompanyShippingAddress.ts 500 undefined WatchType: Closed Script info Info 35 [09:42:47.680] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 36 [09:42:47.680] watchDirectory for c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support uses cached drive information. Info 37 [09:42:47.681] Elapsed:: 0.8866000026464462ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 38 [09:42:47.696] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 39 [09:42:47.696] watchDirectory for c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules uses cached drive information. Info 40 [09:42:47.696] Elapsed:: 0.5095999985933304ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 41 [09:42:47.696] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 42 [09:42:47.696] watchDirectory for c:/Users/Stratos/Desktop/QA/repos/lh/node_modules uses cached drive information. Info 43 [09:42:47.697] Elapsed:: 0.5067999958992004ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 44 [09:42:47.697] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 45 [09:42:47.697] watchDirectory for c:/Users/Stratos/Desktop/QA/repos/node_modules uses cached drive information. Info 46 [09:42:47.697] Elapsed:: 0.47540000081062317ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 47 [09:42:47.697] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 48 [09:42:47.697] watchDirectory for c:/Users/Stratos/Desktop/QA/node_modules uses cached drive information. Info 49 [09:42:47.698] Elapsed:: 0.17679999768733978ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 50 [09:42:47.698] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 51 [09:42:47.698] watchDirectory for c:/Users/Stratos/Desktop/node_modules uses cached drive information. Info 52 [09:42:47.698] Elapsed:: 0.07080000638961792ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/node_modules 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 53 [09:42:47.698] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\cypress\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 54 [09:42:47.705] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\@types\node\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 55 [09:42:47.707] DirectoryWatcher:: Added:: WatchInfo: c:/users/stratos/desktop/qa/repos/lh/cypress/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 56 [09:42:47.707] watchDirectory for c:/users/stratos/desktop/qa/repos/lh/cypress/node_modules uses cached drive information. Info 57 [09:42:47.707] Elapsed:: 0.021600008010864258ms DirectoryWatcher:: Added:: WatchInfo: c:/users/stratos/desktop/qa/repos/lh/cypress/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 58 [09:42:48.015] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\@types\sizzle\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 59 [09:42:48.591] DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 60 [09:42:48.591] watchDirectory for c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec uses cached drive information. Info 61 [09:42:48.592] Elapsed:: 0.7328999936580658ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec 1 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: Failed Lookup Locations Info 62 [09:42:48.592] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\lodash\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 63 [09:42:48.593] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\blob-util\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 64 [09:42:48.594] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\@types\sinonjs__fake-timers\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 65 [09:42:48.594] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\eventemitter2\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 66 [09:42:48.595] FileWatcher:: Added:: WatchInfo: C:\Users\Stratos\Desktop\QA\repos\lh\cypress\node_modules\buffer\package.json 2000 undefined Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json WatchType: File location affecting resolution Info 67 [09:42:48.595] Finishing updateGraphWorker: Project: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 948.5791999995708ms Info 68 [09:42:48.595] Project 'c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json' (Configured) Info 69 [09:42:48.601] Files (126) c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es5.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2016.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2018.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.dom.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.core.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.collection.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.generator.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.iterable.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.promise.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.proxy.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.reflect.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.symbol.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2016.array.include.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.date.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.object.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.string.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.intl.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2018.intl.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2018.promise.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2018.regexp.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2020.bigint.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.es2020.intl.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.esnext.intl.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.decorators.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/typescript/lib/lib.decorators.legacy.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/enums.ts c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/ICompanyBillingAddress.ts c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/ICompanyShippingAddress.ts c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/ICompany.ts c:/Users/Stratos/Desktop/QA/repos/lh/server/lh_modules/account/types/IUser.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/fixtures/responses/get_users_me.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/index.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/blob-util/dist/blob-util.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cy-blob-util.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/bluebird/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cy-bluebird.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cy-minimatch.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/chai/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cy-chai.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/common.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/array.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/collection.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/date.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/function.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/lang.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/math.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/number.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/object.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/seq.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/string.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/common/util.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/lodash/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/sinonjs__fake-timers/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/sinon/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/sinon-chai/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/mocha/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/jquery/JQueryStatic.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/jquery/JQuery.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/jquery/misc.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/jquery/legacy.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/sizzle/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/jquery/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/chai-jquery/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cypress-npm-api.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/net-stubbing.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/eventemitter2/eventemitter2.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/buffer/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cypress-eventemitter.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cypress-type-helpers.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cypress.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cypress-global-vars.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/cypress-expect.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/cypress/types/index.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/assert.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/globals.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/async_hooks.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/buffer.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/child_process.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/cluster.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/console.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/constants.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/crypto.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/dgram.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/dns.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/domain.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/events.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/fs.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/fs/promises.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/http.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/http2.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/https.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/inspector.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/module.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/net.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/os.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/path.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/perf_hooks.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/process.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/punycode.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/querystring.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/readline.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/repl.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/stream.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/string_decoder.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/timers.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/tls.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/trace_events.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/tty.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/url.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/util.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/v8.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/vm.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/wasi.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/worker_threads.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/zlib.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/globals.global.d.ts c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/@types/node/index.d.tsInfo 70 [09:42:48.602] -----------------------------------------------
Info 71 [09:42:48.607] FileWatcher:: Added:: WatchInfo: c:/users/stratos/desktop/qa/repos/lh/cypress/package.json 250 undefined WatchType: package.json file
Info 72 [09:42:48.612] event:
{"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json"}}
Info 73 [09:42:48.614] event:
{"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"6709a190ed71d4cc02b3936b929387f41a5ca75e3bc9d00fd54ef24f0b10677d","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":9,"tsSize":12120,"tsx":0,"tsxSize":0,"dts":117,"dtsSize":4749620,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es5","lib":["es5","dom"],"types":["",""]},"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":"5.2.2"}}}
Info 74 [09:42:48.614] event:
{"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts","configFile":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json","diagnostics":[]}}
Info 75 [09:42:48.614] Search path: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth
Info 76 [09:42:48.614] For info: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts :: Config file name: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json
Info 77 [09:42:48.615] Project 'c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json' (Configured)
Info 77 [09:42:48.615] Files (126)
Info 77 [09:42:48.615] -----------------------------------------------
Info 77 [09:42:48.615] Open files:
Info 77 [09:42:48.615] FileName: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts ProjectRootPath: c:/Users/Stratos/Desktop/QA/repos/lh
Info 77 [09:42:48.615] Projects: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json
Info 77 [09:42:48.615] FileName: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts ProjectRootPath: c:/Users/Stratos/Desktop/QA/repos/lh
Info 77 [09:42:48.615] Projects: c:/Users/Stratos/Desktop/QA/repos/lh/cypress/tsconfig.json
Perf 77 [09:42:48.616] 2::updateOpen: elapsed time (in milliseconds) 1350.1480
Info 78 [09:42:48.616] response:
{"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"performanceData":{"updateGraphDurationMs":948.5791999995708},"body":true}
Info 79 [09:42:48.622] request:
{
"seq": 4,
"type": "request",
"command": "configure",
"arguments": {
"file": "c:\Users\Stratos\Desktop\QA\repos\lh\cypress\spec\auth\signUp.ts",
"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,
"insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true,
"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"insertSpaceAfterTypeAssertion": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false,
"semicolons": "ignore",
"indentSwitchCase": true
},
"preferences": {
"quotePreference": "auto",
"importModuleSpecifierEnding": "auto",
"jsxAttributeCompletionStyle": "auto",
"allowTextChangesInNewFiles": true,
"providePrefixAndSuffixTextForRename": true,
"allowRenameOfImportPath": true,
"includeAutomaticOptionalChainCompletions": true,
"provideRefactorNotApplicableReason": true,
"generateReturnInDocTemplate": true,
"includeCompletionsForImportStatements": true,
"includeCompletionsWithSnippetText": true,
"includeCompletionsWithClassMemberSnippets": true,
"includeCompletionsWithObjectLiteralMethodSnippets": true,
"autoImportFileExcludePatterns": [],
"useLabelDetailsInCompletionEntries": true,
"allowIncompleteCompletions": true,
"displayPartsForJSDoc": true,
"disableLineTextInReferences": true,
"includeInlayParameterNameHints": "none",
"includeInlayParameterNameHintsWhenArgumentMatchesName": false,
"includeInlayFunctionParameterTypeHints": false,
"includeInlayVariableTypeHints": false,
"includeInlayVariableTypeHintsWhenTypeMatchesName": false,
"includeInlayPropertyDeclarationTypeHints": false,
"includeInlayFunctionLikeReturnTypeHints": false,
"includeInlayEnumMemberValueHints": false
}
}
}
Info 80 [09:42:48.622] Host configuration update for file c:\Users\Stratos\Desktop\QA\repos\lh\cypress\spec\auth\signUp.ts
Info 81 [09:42:48.622] response:
{"seq":0,"type":"response","command":"configure","request_seq":4,"success":true}
Perf 82 [09:42:48.623] 4::configure: async elapsed time (in milliseconds) 0.7219
Info 83 [09:42:48.623] request:
{
"seq": 5,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "c:\Users\Stratos\Desktop\QA\repos\lh\cypress\spec\auth\signUp.ts",
"startLine": 16,
"startOffset": 33,
"endLine": 16,
"endOffset": 33,
"includeInteractiveActions": true
}
}
Perf 84 [09:42:48.642] 5::getApplicableRefactors: elapsed time (in milliseconds) 18.6434
Info 85 [09:42:48.642] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":5,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile"}]},{"name":"Move to file","description":"Move to file","actions":[{"name":"Move to file","description":"Move to file","kind":"refactor.move.file"}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenation"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 86 [09:42:48.645] request:
{
"seq": 6,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"c:\Users\Stratos\Desktop\QA\repos\lh\cypress\support\commands.ts",
"c:\Users\Stratos\Desktop\QA\repos\lh\cypress\spec\auth\signUp.ts"
]
}
}
Perf 87 [09:42:48.646] 6::geterr: async elapsed time (in milliseconds) 0.7775
Info 88 [09:42:48.653] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts","diagnostics":[{"start":{"line":28,"offset":17},"end":{"line":28,"offset":18},"text":"',' expected.","code":1005,"category":"error"}]}}
Info 89 [09:42:48.703] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts","diagnostics":[{"start":{"line":12,"offset":9},"end":{"line":12,"offset":17},"text":"Property 'Commands' does not exist on type 'typeof Cypress'.","code":2339,"category":"error"},{"start":{"line":28,"offset":5},"end":{"line":28,"offset":11},"text":"Cannot find name 'dataCy'.","code":2304,"category":"error"},{"start":{"line":28,"offset":12},"end":{"line":28,"offset":17},"text":"Cannot find name 'value'.","code":2304,"category":"error"},{"start":{"line":28,"offset":19},"end":{"line":28,"offset":25},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"}]}}
Info 90 [09:42:48.705] event:
{"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/commands.ts","diagnostics":[{"start":{"line":12,"offset":38},"end":{"line":12,"offset":42},"text":"Parameter 'orig' implicitly has an 'any' type, but a better type may be inferred from usage.","code":7044,"category":"suggestion"},{"start":{"line":12,"offset":44},"end":{"line":12,"offset":47},"text":"Parameter 'url' implicitly has an 'any' type, but a better type may be inferred from usage.","code":7044,"category":"suggestion"},{"start":{"line":12,"offset":49},"end":{"line":12,"offset":52},"text":"Parameter 'opt' implicitly has an 'any' type, but a better type may be inferred from usage.","code":7044,"category":"suggestion"},{"start":{"line":14,"offset":11},"end":{"line":14,"offset":19},"text":"Parameter 'response' implicitly has an 'any' type, but a better type may be inferred from usage.","code":7044,"category":"suggestion"}]}}
Info 91 [09:42:48.715] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts","diagnostics":[]}}
Info 92 [09:42:48.747] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts","diagnostics":[]}}
Info 93 [09:42:48.748] event:
{"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"c:/Users/Stratos/Desktop/QA/repos/lh/cypress/spec/auth/signUp.ts","diagnostics":[{"start":{"line":1,"offset":23},"end":{"line":1,"offset":48},"text":"Could not find a declaration file for module '../../support/selectors'. 'c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/selectors.js' implicitly has an 'any' type.","code":7016,"category":"suggestion"},{"start":{"line":2,"offset":22},"end":{"line":2,"offset":54},"text":"Could not find a declaration file for module '../../support/actions/fillForm'. 'c:/Users/Stratos/Desktop/QA/repos/lh/cypress/support/actions/fillForm.js' implicitly has an 'any' type.","code":7016,"category":"suggestion"},{"start":{"line":4,"offset":15},"end":{"line":4,"offset":23},"text":"Could not find a declaration file for module 'lodash'. 'c:/Users/Stratos/Desktop/QA/repos/lh/cypress/node_modules/lodash/lodash.js' implicitly has an 'any' type.\n Try
npm i --save-dev @types/lodash
if it exists or add a new declaration (.d.ts) file containingdeclare module 'lodash';
","code":7016,"category":"suggestion"}]}}Info 94 [09:42:48.748] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}}
Info 95 [09:42:49.063] request:
{
"seq": 7,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "c:\Users\Stratos\Desktop\QA\repos\lh\cypress\spec\auth\signUp.ts",
"startLine": 16,
"startOffset": 33,
"endLine": 16,
"endOffset": 33,
"includeInteractiveActions": true
}
}
Perf 96 [09:42:49.064] 7::getApplicableRefactors: elapsed time (in milliseconds) 0.8825
Info 97 [09:42:49.064] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":7,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile"}]},{"name":"Move to file","description":"Move to file","actions":[{"name":"Move to file","description":"Move to file","kind":"refactor.move.file"}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenation"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
The text was updated successfully, but these errors were encountered: