Skip to content

All Kudoo's default and standard Typesecript settings

License

Notifications You must be signed in to change notification settings

kudoo-cloud/tsconfig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tsconfig

Shared TypeScript config for my projects

Install

$ npm install --save-dev @kudoo/tsconfig

Usage

tsconfig.json

{
	"extends": "@kudoo/tsconfig",
}

NPM scripts

It's also a good idea to include these scripts

  "scripts": {
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch",
    "build": "npm run build:types && npm run build:js",
    "build:types": "tsc --emitDeclarationOnly",
    "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
    "lint": "tslint -c tslint.json 'src/**/*.ts'",
    "start": "cd lib && node index.js"

License

MIT

About

All Kudoo's default and standard Typesecript settings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published