0.1.4 • Published 3 years ago

@xascode/tscpaths v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

This is a fork of herbcaudill/tscpaths which is a fork of joonhocho/tscpaths.

tscpaths

Replace absolute paths to relative paths after typescript compilation (tsc) during compile-time.

npm version Dependency Status License

Comparison to tsconfig-paths

+ Compile time (no runtime dependencies)

Getting Started

First, install tscpaths as devDependency using npm or yarn.

npm install --save-dev @XasCode/tscpaths
# or
yarn add -D @XasCode/tscpaths

Add it to your postbuild script in package.json

"scripts": {
  "build": "tsc --project tsconfig.json",
  "postbuild": "tscpaths -p tsconfig.json -s ./src -o ./out --silent",
}

Options

flagdescription
-p --projectproject configuration file (tsconfig.json)
-s --srcsource code root directory
-o --outoutput directory of transpiled code (tsc --outDir)
--silentsilence the console output

You need to provide -s (--src) and -o (--out), because it's hard to predict source and output paths based on tsconfig.json.