Giter VIP home page Giter VIP logo

Comments (3)

sinclairzx81 avatar sinclairzx81 commented on May 24, 2024 1

@divmgl Hi,

It's fairly common to put TB types in a shared common package, and import that package into client and server packages. There shouldn't be an issue doing this, however mileage may vary depending on the tooling you use to manage the mono repo. In short, you shouldn't need to replicate the LOGIN_SCHEMA in client and server, but you may want to investigate setting up the shared package.

Generally, when I approach mono repo setups, I don't use composite: true, rather I make use of TypeScript's baseUrl and paths configurations. These configurations live in a tsconfig.json sitting in the project root. To build projects, I typically use esbuild (which understands baseUrl and paths), however more sophisticated tooling such as NX also understands TS path aliasing also.

{
  "compilerOptions": {
    "strict": true,
    "module": "ESNext",
    "target": "ESNext",
    "baseUrl": ".",                                    // tsconfig.json in the root directory
    "paths": {                                         // ... and references these packages with aliases

      "@app/shared": ["./packages/shared/index.ts"],   // type library goes here (i.e. typebox)
      "@app/client": ["./packages/client/index.ts"],   // client library goes here (i.e. react)
      "@app/server": ["./packages/server/index.ts"],   // server library goes here (i.e. express)
    }
  }
}

// ... with the types imported inside the client and server library with.

import { LOGIN_SCHEMA } from '@app/shared'

Posting the above in case it helps, but will close off this issue as it seems more related to project configuration and tooling than TypeBox.

Cheers!
S

from typebox.

divmgl avatar divmgl commented on May 24, 2024

Declaring LOGIN_SCHEMA in both packages solves the issue. Why would this object differ between packages if they're both using the same version of Typebox?

from typebox.

divmgl avatar divmgl commented on May 24, 2024

While it doesn't necessarily solve the issue I'm having, I think this is an interesting solution to other problems that I'm having in our codebase. So I'll give this all a shot, thanks.

from typebox.

Related Issues (20)

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.