We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73de2b4 commit c91e897Copy full SHA for c91e897
src/content/docs/workers/languages/typescript/index.mdx
@@ -89,7 +89,7 @@ You can now remove any imports from `@cloudflare/workers-types` in your Worker c
89
```json
90
{
91
"compilerOptions": {
92
- "types": ["worker-configuration.d.ts"]
+ "types": ["./worker-configuration.d.ts"]
93
}
94
95
```
@@ -107,7 +107,7 @@ Then add this to your `tsconfig.json`.
107
108
109
110
- "types": ["worker-configuration.d.ts", "node"]
+ "types": ["./worker-configuration.d.ts", "node"]
111
112
113
0 commit comments