- If you has not installed
nodein your environment, you should reference following page.
https://nodejs.org/en/download/package-manager/
-
Next, clone this repository and run
cd ts-template. -
Run following command in your command line.
# install dependencies
npm install
# run webpack
npm run build
# run webpack --watch (incremental build)
npm run watch├── README.md
├── index.html
├── package.json
├── src
│ ├── American.ts
│ ├── Japanese.ts
│ ├── Person.ts
│ └── index.ts
├── tsconfig.json
├── typings
│ └── index.d.ts
├── typings.json
└── webpack.config.js