-
-
Notifications
You must be signed in to change notification settings - Fork 261
Closed
Labels
Description
If you have a path alias like @app/*
configured in tsconfig.json
and run tsup-node
against your files, @app
will be accidentally marked as external, it needs to be fixed here:
Lines 17 to 22 in 6075c80
if (skipNodeModulesBundle) { | |
build.onResolve({ filter: NON_NODE_MODULE_RE }, (args) => ({ | |
path: args.path, | |
external: true, | |
})) | |
} |