Definitelytyped: ERROR in node_modules/@types/koa/index.d.ts(104,14): error TS2694: Namespace '"url"' has no exported member 'URL'.

Created on 21 Dec 2017  路  3Comments  路  Source: DefinitelyTyped/DefinitelyTyped

Most helpful comment

Updating @types/node to newest version fixed this for me

All 3 comments

Updating @types/node to newest version fixed this for me

I changed the URL: url.URL; to URL: url.Url; .
and solved.

Actually all you need to do is include @type/node to tsconfig compilerOptions
```json
{
"compilerOptions": {
"types": [
"node"
]
}
}

Was this page helpful?
0 / 5 - 0 ratings