Giter Site home page Giter Site logo

Comments (4)

qmhc avatar qmhc commented on June 19, 2024 1

The directory structure relative to root will be maintained when generating declaration files. This is to ensure the correct relationship of each type reference.

If you want a fixed export entry, you can use the insertTypesEntry option, otherwise you need to specify the type entry with types option in package.json.

In your case, first you need to remove declarationDir option in tsconfig.json (using outputDir instead) and change src/@types/index.d.ts to src/@types/index.ts (currently not support import type from .d.ts file), then add outputDir: '@types' to plugin options and run build script, finally add "types": "@types/src/index.d.ts" into package.json.

image

If you want to generate only a single declaration file in the end, I recommend @microsoft/api-extractor to you, use it after running build script to bundle declaration files.

from vite-plugin-dts.

qmhc avatar qmhc commented on June 19, 2024 1

There have some bugs, I open a new issue (#20) to track them.

Now you can change your alias config:

defineConfig({
  resolve: {
    alias: {
      '@components': path.resolve(__dirname, 'src/components'),
      '@': path.resolve(__dirname, 'src')
    }
  }
})

And use import { default as VContainer } from '@/components/layout/container/VContainer.vue' to solve this problem.

from vite-plugin-dts.

qmhc avatar qmhc commented on June 19, 2024

I will add support for import types from .d.ts files later.

from vite-plugin-dts.

D4RKAR117 avatar D4RKAR117 commented on June 19, 2024

Thanks for the fast answer, and the great advices.

The generation is much better with the changes made in this commit

also idk if is intended that @types is generated out dist with your advice, so y made outputDir to point inside dist, but maybe i misunderstood that part.

but my playground still failing with the import at src/index.d.ts. The typescript path @component is not resolved when is generated. Still like import VContainer from '@components/layout/container/VContainer.vue';. if this is related to the support that still WIP i will change to relative paths, but i like to have your confirmation first.

Thanks.

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.