Code Monkey home page Code Monkey logo

tsc-hooks's Introduction

TypeScript Compiler Hooks

Installation

For Project Specific tsc:

yarn add tsc-hooks --dev

For Global tsc:

yarn global add tsc-hooks

Getting Started

Example tsconfig.json

{
  "compilerOptions": {
    "outDir": "dist"
  },
  "include": [ "src/**/*" ],
  "exclude": [ "src/**/*.txt" ],
  "hooks": [ "copy-files" ] // hooks is a new property you can add to tsconfig to add custom hooks
  
  /* For more hooks look below... */
}

Hooks are executed in the same order as defined in tsconfig.jsons hook property.

Available Hooks

Hook ID Description Author
copy-files tsc does not copy over extra files like .xml, .txt, .html, etc. after compilation. This hook fixes this by copying over files specified in "include". It also ignores files specified in "exclude". Mark Auger (swimauger)
file-permissions This hook sets permissions to files after tsc has completed. joel(dderjoel)
<your-hook-id> Learn how to create your own hook here <Your name here>

Examples

file-permissions

  1. tsc compiles index.ts to ./dist/index.js
  2. The copy-files-hook will copy the src/helperProgram.bin to ./dist/helperProgram.bin
  3. The file-permissions-hook will set the permissions r-xr--r-- to ./dist/{helperProgram.bin, index.js} (assuming ./src/index.ts has a shebang like #!/usr/bin/env node, one can now execute ./dist/index.js)

Expample-tsconfig.json:

{
  "compilerOptions": {
    "outDir": "dist"
  },
  "include": [ "src/index.ts", "src/helperProgram.bin" ],
  "exclude": [ "src/**/*.txt" ],
  "hooks": [ "copy-files", "file-permissions" ] 
  "filePermissions": {
    "./dist/helperProgram.bin": "0544",
    "./dist/index.js": "0544"
  }
}

What Can TSC Hooks Do?

  • TypeScript Compiler hooks are scripts that can execute on compilation of your TypeScript project using tsc
  • They can provide new tsconfig options to help your project run smoother
  • They can add new functionality to the compilation process

tsc-hooks's People

Contributors

swimauger avatar dderjoel avatar davidtranhq avatar jambdev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.