[TypeScript] node.jsで開発する

$ npm init -y
$ npm install typescript @types/node –save-dev
$ tsc –init
L tsconfig.jsonはtypescriptに関する設定情報ファイル

– webpack設定ファイルの作成
$ npm install webpack ts-loader @webpack-cli/generators
$ npx webpack-cli init
Typescript, Y, Y, Y, none, Y, npm, Y, Y, Y, Y

package.config.json

host: "192.168.34.10",

index.htmlとindex.tsを書き換える
$ npm run build
L distフォルダが作成される
$ npm run serve

なるほど、なかなかやりおる