You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem description
I'm using mssql: 11.0.1 package which @types package using "@types/tedious": "*" package - this @types/tedious package is stubbed
When I try run my lint script
"lint-staged": "npm run format && npm run ts-check && npm run lint",
"ts-check": "tsc --noEmit --skipLibCheck --pretty",
I receive error
error TS2688: Cannot find type definition file for'tedious'.
The file is in the program because:
Entry point for implicit type library 'tedious'
The @types/tedious package is empty
Also my tsconfig.json show me this error to
I fix this by adding
"overrides": {
"@types/tedious": "4.0.14"
}
into my package.json but it is not the solution of the problem
Expected behavior
All run without any errors
The text was updated successfully, but these errors were encountered:
Software versions
Additional Libraries Used and Versions
Problem description
I'm using
mssql: 11.0.1
package which @types package using"@types/tedious": "*"
package - this@types/tedious
package is stubbedWhen I try run my lint script
I receive error
The @types/tedious package is empty
Also my
tsconfig.json
show me this error toI fix this by adding
into my
package.json
but it is not the solution of the problemExpected behavior
All run without any errors
The text was updated successfully, but these errors were encountered: