1.0.5 • Published 6 years ago

create-tsproj v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

create-tsproj

easily start a typescript project using command line

Installation

sudo npm install -g create-tsproj

Create New Project

Run this command to create a new project:
create-tsproj PROJECT_NAME
You can pass your project name as the first argument after create-tsproj, or you can use --name flag:
create-tsproj --name PROJECT_NAME

This command creates a new folder, adds package.json and installs devDependencies for new typescript project. This command also creates tslint.json, tsconfig.json and .gitignore files, to disable this feature, run the command with --no-tslint to disable tslint and --no-gitignore to disable creating gitignore file.

create-tsproj PROJECT_NAME --no-tslint
create-tsproj PROJECT_NAME --no-gitignore

What's next?

After initiating the project, you can go to the directory of your project and run these commands:

npm run build
To build *.js files out of typescript files. Transpiled files are located in dist directory by default. you can change default path for emmited files in package.json.

npm run build:w
This command does every thing that npm run build does, except that this runs the compiler in watch mode.

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago