আমি অবশেষে এটি সমাধান করতে পেরেছি!
টার্মিনালে আমার কমান্ড:
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:
এটি সমাধানের জন্য আমি যা করেছি, তা 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 আমি কীভাবে সম্পাদনা করব?