DTS Build error TS5101: Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0.
Author: crimxCreated Mar 24, 2026Updated May 26, 2026
DTS Build start
error TS5101: Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
Visit https://aka.ms/ts6 for migration information.https://github.com/egoist/tsup/blob/b906f86102c02f1ef66ebd4a3f7ff50bdc07af65/src/rollup.ts#L115
{
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^6.0.2"
}
}import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
dts: true,
});Source: egoist/tsup