-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NestJS example not working #88
Comments
Try add this two options into {
"compilerOptions": {
// ...
"module": "ESNext",
"moduleResolution": "node",
// ...
}
} |
I tried it and had the same output, only this time, I tried to execute from within the "examples" folder of this repository, so another error was added into the fold:
Some remarks:
|
My guess is that I need to create a type definition for ImportMetaEnv manually: https://vitejs.dev/guide/env-and-mode.html#intellisense-for-typescript I'll try this later. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello. Currently it's not possible to run the NestJS example with the current TS configuration. If trying to run
pnpm start
yields:And then, changing module to "es2020" and adding 'moduleResolution: "node"' in tsconfig.json:
Is it outdated or did I forget some configuration?
The text was updated successfully, but these errors were encountered: