顯示"tsc"指令時出現"SyntaxError: Unexpected token ?"
<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>