Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 22 Jun 09:57
· 1144 commits to master since this release

Patch Changes

  • d0e5e3f: Add a tsconfig option which can be pointed towards your tsconfig.json to keep esbuild and typescript in sync.

    Usage example:

    import { fileURLToPath } from 'url';
    esbuildPlugin({
      ts: true,
      tsconfig: fileURLToPath(new URL('./tsconfig.json', import.meta.url)),
    });

    Note: Without the above code the tsconfig.json file will not be used.