Giter Site home page Giter Site logo

bun-plugin-dts's Introduction

Assume nothing, test everything.

bun-plugin-dts's People

Contributors

ryoppippi avatar wobsoriano avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

bun-plugin-dts's Issues

Problems with nested entries with the same name

for a file structure like this:

src
 - core / index.ts
 - lib / index.ts
 - something / index.ts
 - etc / index.ts

there is only one index file generated and it's in the root of the outdir

dist
 - core / index.js
 - ...
 - index.d.ts

and it's not all of them combined but rather the last one - so in this example contents of etc / index.ts entrypoint

`export * as Module from './Module'` doesn't generate any types

I have prepared a repo to show this problem: https://github.com/JacobWeisenburger/dts_bug_repo

I'm trying to do export * as Module from './Module' but when I run my build script, it doesn't generate any types. See code below (also in repo)

scripts/build.ts

import dts from 'bun-plugin-dts'
// ...
await Bun.build( {
    entrypoints: [ './src/index.ts' ],
    outdir: './dist',
    plugins: [
        dts()
    ],
} )
// ...

src/index.ts

export * as fooModule from './fooModule'

src/fooModule.ts

export * from './foo.ts'

src/foo.ts

export function foo () { return 'foo' }

dist/index.d.ts

// Generated by dts-bundle-generator v8.1.2
export {};

Throws error for imported assets

This plugin throws an error when resolving imported assets as described by the Bun documentation here:

Files

  • ./index.ts
  • ./desert/background.png
// index.ts
import desertViewTowerUrl from './desert/background.jpg'

Output

error TS2307: Cannot find module './desert/background.jpg' or its corresponding type declarations.

Expected Behavior

I would expect this plugin to skip anything that Bun considers to be an asset.

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.