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.
2 parents 32becb1 + 3c04562 commit bef36c1Copy full SHA for bef36c1
docs/getting-started.md
@@ -32,6 +32,13 @@ yarn add -D typescript @types/node @types/express
32
# Initialize tsconfig.json
33
yarn run tsc --init
34
```
35
+When using pnpm, you will also need to explicitely add the @tsoa/runtime as a dependecy for generated routes.
36
+This is inherent to the way pnpm manages node_modules (see [pnpm symlinked node_modules structure](https://pnpm.io/symlinked-node-modules-structure)).
37
+```shell
38
+
39
+# Explicitely add @tsoa/runtime with pnpm as it will be needed by generated routes
40
+pnpm add @tsoa/runtime
41
+```
42
43
## Configuring tsoa and typescript
44
0 commit comments