You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following error message in typescript.js doesn't reflect the full path but only the filename.
Error: Typescript compilation failed. Please ensure handlers exists with ext .ts or .js
at /home/runner/work/40Seas/40Seas/node_modules/serverless-plugin-typescript/dist/src/typescript.js:71:15
As a result it is hard to know where the problem is, and whether the code is actually looking in the right place.
The text was updated successfully, but these errors were encountered:
I've run into this just recently using namespaces in the handler.ts file. It hates using multiple dots, and I had to put all my functions on the root of the file to get around it.
In my case, the error started when I installed serverless-dynamodb-local. The only modification I made was to the serverless.yml file to resolve the issue. I placed the TypeScript plugin below dynamodb-offline, and then I moved the functions above the custom DynamoDB configuration.
The following error message in typescript.js doesn't reflect the full path but only the filename.
Error: Typescript compilation failed. Please ensure handlers exists with ext .ts or .js
at /home/runner/work/40Seas/40Seas/node_modules/serverless-plugin-typescript/dist/src/typescript.js:71:15
As a result it is hard to know where the problem is, and whether the code is actually looking in the right place.
The text was updated successfully, but these errors were encountered: