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.
|
baseUrl: compilerOptions.baseUrl || '.', |
{
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^6.0.2"
}
}
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
dts: true,
});