ノードのバージョンはv9.3.0、npmのバージョンは5.5.1です。 私が使用してサンプルプロジェクトを作成して実行しようとしています:strictモードでのconstの使用(角2)
ng new test;
ng serve -o;
角度CLIプログラムを正常にコンパイルしますが、私のブラウザのページが空白で、中にコンソールログの結果:まず
Uncaught SyntaxError: Use of const in strict mode.
、どのように私はこのエラーをavodできますか? この場合、strictモードはどのように有効になりますか?
EDIT:GitHubの議論の下 Link
の下で解決
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
}
}
どのブラウザですか?あなたのtsconfigの外観はどうですか?コンパイル対象は何ですか? – Zlatko
@Zlakto私のブラウザはクロム、コンパイルターゲットはes5です。 tsconfigファイルで質問を編集するか、特定のオプションを探す必要がありますか? – TheFool
@Zlaktoさんがtsconfigファイルで質問を編集しました。 – TheFool