I’m dockerizing my nexus prisma app, but when I ru...
# graphql-nexus
p
I’m dockerizing my nexus prisma app, but when I run
tsc
inside my Docker container I get
Copy code
Cannot find name ‘NexusPrisma’
Any ideas?
r
@Paul Hendrickson 👋 Could you try running this command before
tsc
and check if it works?
Copy code
ts-node --transpile-only ./src/schema
This will generate the types so it should remove the error.
p
It worked! Thank you! You are a lifesaver!!
🙌 1