learn-a icon indicating copy to clipboard operation
learn-a copied to clipboard

Sample repo using lerna with TypeScript project references

Results 15 learn-a issues
Sort by recently updated
recently updated
newest added

Hi 👋 I've wanted to complement this question here: Just to give you a brief explanation here, my library setup is as the following: ``` packages/foo ├── README.md ├── babel.config.js...

Thanks for this sample, it hit the spot. However, It seems like the npm published packages @ryancavanaugh/pkg2 and @ryancavanaugh/pkg3 are not up-to-date with the latest checked-in package.json files. @ryancavanaugh/pkg1 seems...

Hi @RyanCavanaugh , thanks a lot for this minimal repo, very helpful. In your working with multi-package repos, have you found a way to use tsc language services like "find...

Or something like that. Could "learn-a" be a typo? This would make this repo much easier to discover in google.

I've written an npm CLI for setting up a repo like this one. Anyone who sees it please try it out and give me some feedback! https://www.npmjs.com/package/@isomorphic-typescript/ts-monorepo

I'm trying to get a simple POC going that somewhat mimics our monorepo and I'm running across a problem that I'm hoping someone can help with. I set up everything...

Ignoring the src folder in .npmignore reduces package size. Someone at MS knows haha: https://github.com/Microsoft/TypeScript/blob/master/.npmignore

The simplicity of this example is the best thing about it. However, can you add a `test` folder next to `src` folder in `pkg1`? And place one .ts file in...

In pkg2, I'm getting `[ts] Cannot find module '@ryancavanaugh/pkg1'.` unless I run `tsc -b packages`. This is a little annoying... I suppose you aren't supposed to work on both packages...

First, thanks for putting this together Ryan! I had a look at it this evening. I downloaded, followed the instructions and then played around a bit. In VS Code, I...