npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vite-ts-path-with-multy-index-support

v1.3.2-b

Published

This npm package was created for my personal use, so a lot more testing is required. It is only tested on linux.

Downloads

35

Readme

Vite Ts Path With Multy Index Support

This npm package was created for my personal use, so a lot more testing is required. It is only tested on linux.

If you still wanna use this package here is a description of how it works.

you can install this as bellow:

npm i vite-ts-path-with-multy-index-support

you can use this as follows:

import { defineConfig } from 'vite'
import viteTspathWithMultyIndexSuport from "vite-ts-with-multy-index-support"
// https://vitejs.dev/config/
export default defineConfig({
  
  plugins: [viteTspathWithMultyIndexSuport()]
})

It only exports one function as seen here.

It takes one optional object as it's argument. It has the given attributes:

  • root: string to set the root of the project. by default it would be the root set in vite config, if not set then it uses baseUrl of tsConfig, if not set uses process.cwd(). It is used to resolve bare import from root when module resolution is classic in ts.
  • exclude: string[] exclude certain modules from being resolved by this plugin. It by default will also exclude certain modules added at vite config.
  • extensions: string[] extensions to look for when doing root import. It will look for the import and get the first match in the same order as given.it is not used if extensions is defined within resolve of vite config. This defaults to:
[
    '.mjs',
    '.js',
    '.ts',
    '.jsx',
    '.tsx',
    '.json'
]
  • moduleResolution: "classic" | "node" same as the compilerOption of the same name for tsconfig. It is only used to check if bare root import should be done.

If you would like to you can help me out with windows integration, better documentation and project structure.