顯示"tsc"指令時出現"SyntaxError: Unexpected token ?"
P粉026665919
2023-08-25 19:05:09
<p>我是打字稿新手,
我嘗試透過執行指令 <code>tsc filename.ts</code> 將打字稿檔案轉換為 javascript 檔案。
但它顯示錯誤。 </p>
<pre class="brush:php;toolbar:false;">C:Program Files (x86)Nodistbinnode_modulestypescriptlibtsc.js:93
for (let i = startIndex ?? 0; i < array.length; i ) {
^
SyntaxError: Unexpected token ?
at Module._compile (internal/modules/cjs/loader.js:749:23)
在 Object.Module._extensions..js (internal/modules/cjs/loader.js:816:10)
at Module.load (internal/modules/cjs/loader.js:672:32)
在 tryModuleLoad (internal/modules/cjs/loader.js:612:12)
在 Function.Module._load (internal/modules/cjs/loader.js:604:3)
at Module.require (internal/modules/cjs/loader.js:711:19)
at require (internal/modules/cjs/helpers.js:14:16)
在 Object.<anonymous> (C:Program Files (x86)Nodistbinnode_modulestypescriptbintsc:2:1)
at Module._compile (internal/modules/cjs/loader.js:805:30)
在 Object.Module._extensions..js (internal/modules/cjs/loader.js:816:10)</pre>
<p>我嘗試將節點安裝到最新版本。 </p>
我在使用
TypeScript
5.1.6 和 Node 12.x 版本時遇到了同樣的問題。由於這種組合,您會遇到這個問題。我將我的
TypeScript
降級到 4.9.5,它對我來說效果很好。請檢查下面的圖片以供參考:
https://www.typescriptlang.org /docs/handbook/release-notes/typescript-5-1.html