Giter Site home page Giter Site logo

Comments (3)

guoyunhe avatar guoyunhe commented on June 19, 2024 5

Same issue here. I am using Vite in a Node.js script, so here is no vite.config.ts in the library repo.

The actual output is:

dist
├── index.cjs.js
├── index.esm.js
├── index.umd.js
├── src
|   ├── Button.d.ts
|   └── index.d.ts
└── style.css

The dist/src folder is not necessary.

Expected output should be:

dist
├── index.cjs.js
├── index.esm.js
├── Button.d.ts
├── index.d.ts
├── index.umd.js
└── style.css

from vite-plugin-dts.

qmhc avatar qmhc commented on June 19, 2024 2

Currently you can use entryRoot option to specify a entry root, the output relative paths will be calculated according to it, and it will be auto calculated as the smallest public path of all files if it is not set.

expect(
  queryPublicPath(['E:\\project\\src\\lib\\a.d.ts', 'E:\\project\\src\\lib\\b.d.ts'])
).toBe('E:\\project\\src\\lib')

// outputs: 'dist/a.d.ts' and 'dist/b.d.ts'

from vite-plugin-dts.

qmhc avatar qmhc commented on June 19, 2024

root option is using for monorepo in some cases, not necessary to change it usually.

Is your vite.config.ts in 'lib' dir ?
(it would be better for vite.config.ts and tsconfig.json in the same dir, defaults in root)

Normally you set outputDir: 'dist/typings', you will get like following paths after building:

{root}/dist/typings/lib/<stuff>.d.ts

And the type entry is the file with the same name as lib.entry: {root}/dist/typings/lib/index.d.ts

You can set "types": "dist/typings/lib/index.d.ts" in package.json to make it effective.

It's helpful that you can provide a reproductive repo.

from vite-plugin-dts.

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.