ในที่สุดฉันก็แก้ได้แล้ว!
คำสั่งของฉันบนเทอร์มินัล:
yarn tsc main.ts && nodejs main.js
ข้อความแสดงข้อผิดพลาดของฉัน:
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://yarnpkg.com/en/docs/cli/run for documentation about this command.
สิ่งที่ฉันทำเพื่อแก้ปัญหาคือการอ้างอิงไฟล์ tsconfig.json
ไฟล์ tsconfig.json ของฉันเป็นแบบนี้:
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"ES2015",
"DOM"
]
}
}
และคำสั่งเทอร์มินัลของฉันเป็นเช่นนี้:
yarn tsc -p ./tsconfig.json && nodejs main.js
หากฉันต้องการเรียกใช้ไฟล์. ts อื่น ๆ ฉันก็ทำ:
yarn tsc -p ./tsconfig.json && nodejs file_name.js
{ "compilerOptions": { "module": "commonjs", "target": "es5", "noImplicitAny": false, "sourceMap": false } }
นี่คือ tsconfig.json ของฉันฉันควรแก้ไขอย่างไร