We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
Yarn install fails with unknown file exstension .ts.
.ts
To Reproduce
Clone the repo, and follows the install steps:
yarn install; cd web; yarn install;
The following error occurs:
> [email protected] copy-library /houdini/web > copyfiles -u 2 ../library/**/* src/library/ > [email protected] generate-tools-list /Users/gx1/Git/SecSI/houdini/web > npx ts-node --esm scripts/generate_tools_list.ts TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for /houdini/web/scripts/generate_tools_list.ts at new NodeError (node:internal/errors:405:5) at Object.getFileProtocolModuleFormat [as file:] (node:internal/modules/esm/get_format:99:9) at defaultGetFormat (node:internal/modules/esm/get_format:142:36) at defaultLoad (node:internal/modules/esm/load:115:20) at nextLoad (node:internal/modules/esm/hooks:832:28) at load (/houdini/web/node_modules/ts-node/dist/child/child-loader.js:19:122) at nextLoad (node:internal/modules/esm/hooks:832:28) at Hooks.load (node:internal/modules/esm/hooks:415:26) at MessagePort.handleMessage (node:internal/modules/esm/worker:168:24) at [nodejs.internal.kHybridDispatch] (node:internal/event_target:807:20) { code: 'ERR_UNKNOWN_FILE_EXTENSION' }
Possible solutions
Replace ts-node with tsx: https://www.npmjs.com/package/tsx
ts-node
tsx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Yarn install fails with unknown file exstension
.ts
.To Reproduce
Clone the repo, and follows the install steps:
The following error occurs:
Possible solutions
Replace
ts-node
withtsx
:https://www.npmjs.com/package/tsx
The text was updated successfully, but these errors were encountered: