We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tsconfig paths are supported now #48 , but using # as an alias does not work, but other symbols like @ or $ works.
#
@
$
To reproduce, setup aliases in tsconfig to use # as an alias, like the following:
// tsconfig.json { "baseUrl": "./", "paths": { "#/*": ["src/*"] } }
// src/index.ts { import { foo } from '#/foo' foo() }
// src/foo.ts { export const foo = () => console.log('foo') }
Aliased imports defined in tsconfig should work.
Change all instances of # with @ and pkgroll will run as expected.
https://github.com/alwyntan/pkgroll-path-bug
v2.6.1
v23.6.0
pnpm
macOS
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
tsconfig paths are supported now #48 , but using
#
as an alias does not work, but other symbols like@
or$
works.To reproduce, setup aliases in tsconfig to use
#
as an alias, like the following:Expected behavior
Aliased imports defined in tsconfig should work.
Change all instances of
#
with@
and pkgroll will run as expected.Minimal reproduction URL
https://github.com/alwyntan/pkgroll-path-bug
Version
v2.6.1
Node.js version
v23.6.0
Package manager
pnpm
Operating system
macOS
Bugs are expected to be fixed by those affected by it
Compensating engineering work financially will speed up resolution
The text was updated successfully, but these errors were encountered: