5. Building a WYSIWYG Editor for the Desktop Using Electron
5章を読んで写経して不明点をまとめた
・tsconfig.json
以下らしい
>・TSファイルをJSファイルにコンパイルするための設定ファイル。
https://qiita.com/crml1206/items/8fbfbecc0b40968bfc42
・Can’t bind to ‘ngModel’ since it isn’t a known property of ‘ngx-wig’.
import { FormsModule } from '@angular/forms';
・electron: Failed to load URL: file:///hogehoge/book/my-editor/dist/my-editor/index.html
electronのパスがdistのbrowser以下のフォルダを見に行かないから変えてみた
"outputPath": { "base": "dist/my-editor", "browser": "" },
・electronの実行
.vscode配下のlaunch.jsonでelectronを実行する