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
It works if you run the command from one directory up if tsconfig.json isn't present in the folder you run the cmd node --loader @swc-node/register/esm .\src\test.ts
Result: no errors
The text was updated successfully, but these errors were encountered:
Steps to reproduce
Files
test.ts
const hello : string = "World";
tsconfig.json ( even empty file )
{}
Libs and Versions
tested with
@swc-node/register: 1.6 or 1.8 as well
and with node
18.17 and 20.11
Reproduce
run command
node --loader @swc-node/register/esm .\test.ts
What happens:
Expected:
no errors
Remove
tsconfig.json
file and run the command againnode --loader @swc-node/register/esm .\test.ts
Result:
no errors
Side note
If you have the test.js and tsconfig.json file in a subfolder and run the command from parent folder where tsconfig.json is not present it will run.
It works if you run the command from one directory up if
tsconfig.json
isn't present in the folder you run the cmdnode --loader @swc-node/register/esm .\src\test.ts
Result:
no errors
The text was updated successfully, but these errors were encountered: