@typescript-tools/typescript-build-linker
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

typescript-build-linker Build status npm version

Link together TypeScript packages in a mono-repo

Automatically manage TypeScript Project References in a lerna monorepo.

Install

npm install @typescript-tools/typescript-build-linker

Use

tsl [--dry-run] <repository>

Point tsl at the root directory of your monorepo and it will write the references list in each tsconfig.json file of every leaf package and parent directory.

Note: This project assumes a directory layout similar to the example in lern-a, and is probably not flexible enough at this time to handle other monorepo structures.

Integrate into your build-system

Simply configure tsl to run before tsc.

Example package.json in monorepo root:

{
    "name": "root",
    "private": true,
    "scripts": {
        "make": "npm run bootstrap && npm run link && npm run build",
        "bootstrap": "lerna bootstrap --hoist",
        "link": "tsl .",
        "build": "tsc -b --verbose packages"
    },
    "devDependencies": {
        "@typescript-tools/typescript-build-linker": "^1.0.3",
        "lerna": "^3.13.2"
    }
}

Note: tsl will not write to a file that requires no updates, so tsc will not re-compile packages unnecessarily.

Related

Acknowledgments

Package Sidebar

Install

npm i @typescript-tools/typescript-build-linker@1.0.4

Version

1.0.4

License

ISC

Unpacked Size

42.1 kB

Total Files

26

Last publish

Collaborators

  • hamroctopus
  • amchelle