Coder Social home page Coder Social logo

Comments (3)

n1ru4l avatar n1ru4l commented on June 15, 2024

Hey @vtereshyn, I would love to help you, can you please provide more context? In the best case a failing PR or GitHub example. bob runs tsc and overwrites a few compiler options in order to generate correct esm and cjs code.

from bob.

vtereshyn avatar vtereshyn commented on June 15, 2024

@n1ru4l sure. this project uses one tsconfig.json and next structure:

packages
	libs
	not-libs
package.json
tsconfig.json

I see that .bob folder contains all code that I need and build was successful. Function assertTypeScriptBuildResult checks if result has exitCode not equal to 0, but here what result contains in my case:

{
  stdout: '',
  stderr: '',
  code: 0,
  failed: false,
  killed: false,
  signal: null,
  cmd: 'npx tsc --module es2022 --sourceMap false --inlineSourceMap false --outDir /.bob/esm',
  timedOut: false
}

My tsconfig.json:

{
  "compilerOptions": {
    "baseUrl": ".",
    "outDir": "dist",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "importHelpers": true,
    "experimentalDecorators": true,
    "module": "Node16",
    "target": "ESNext",
    "lib": [
      "esnext"
    ],
    "suppressImplicitAnyIndexErrors": true,
    "moduleResolution": "NodeNext",
    "emitDecoratorMetadata": true,
    "sourceMap": false,
    "declaration": true,
    "noImplicitThis": true,
    "strict": true,
    "alwaysStrict": true,
    "noImplicitReturns": true,
    "noUnusedLocals": false,
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "paths": {
    .....................
    }
  },
  "include": [
    "packages"
  ],
  "exclude": [
    "**/node_modules",
    "**/dist",
    "**/.bob"
  ]
}

Workspaces field from package.json:

  "workspaces": [
    "packages/libs/*",
    "packages/not-libs/*",
    "!packages/docs",
    "!packages/**/dist"
  ],

Please, let me know if you want me to provide more details. Thank you!

from bob.

vtereshyn avatar vtereshyn commented on June 15, 2024

UPD: The issue was in This syntax requires an imported helper but module 'tslib' cannot be found.. But for some reasons, this error was after TypeScript compiler exited with non-zero exit code., so I wasn't able to get it.

When I went into assertTypeScriptBuildResult and put if (result.exitCode !== 0 && result.code !== 0) { instead of if (result.exitCode !== 0) { I was able to get error described above. Then, I installed tslib as a dependency, and now everything works well

from bob.

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.