/ts-template

Getting started TypeScript

Primary LanguageTypeScript

ts-template

Getting started

  1. If you has not installed node in your environment, you should reference following page.

https://nodejs.org/en/download/package-manager/

  1. Next, clone this repository and run cd ts-template.

  2. Run following command in your command line.

# install dependencies
npm install

# run webpack
npm run build

# run webpack --watch (incremental build)
npm run watch

Directory constitution

├── 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