W końcu udało mi się to rozwiązać!
Moje polecenie na terminalu:
yarn tsc main.ts && nodejs main.js
Mój komunikat o błędzie:
main.ts:1:16 - error TS2705: An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your `--lib` option.
1 async function main() {
~~~~
Found 2 errors.
error Command failed with exit code 2.
info Visit https:
To, co zrobiłem, aby go rozwiązać, odwoływałem się do pliku tsconfig.json.
Mój plik tsconfig.json wyglądał następująco:
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"ES2015",
"DOM"
]
}
}
A moje polecenie terminala jest takie:
yarn tsc -p ./tsconfig.json && nodejs main.js
Jeśli chcę uruchomić inny plik .ts, po prostu robię:
yarn tsc -p ./tsconfig.json && nodejs file_name.js
{ "compilerOptions": { "module": "commonjs", "target": "es5", "noImplicitAny": false, "sourceMap": false } }
to jest mój plik tsconfig.json Jak mam edytować?