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

Related issues

fasatrix picture fasatrix  ·  3Comments

Zzzen picture Zzzen  ·  3Comments

alisabzevari picture alisabzevari  ·  3Comments

jbreckmckye picture jbreckmckye  ·  3Comments

csharpner picture csharpner  ·  3Comments