fix(docs):Docs and Exports
- Add documentation for recently released changes - Update some exports to include enums
This commit is contained in:
+5
-5
@@ -1,16 +1,16 @@
|
||||
import { defineConfig } from "tsup";
|
||||
import { defineConfig } from 'tsup';
|
||||
|
||||
export default defineConfig({
|
||||
entry: { index: "src/index.ts", sentry: "src/sentry.ts" },
|
||||
format: ["esm", "cjs"],
|
||||
entry: { index: 'src/index.ts', sentry: 'src/sentry.ts' },
|
||||
format: ['esm', 'cjs'],
|
||||
// tsup injects baseUrl for DTS; TS 6 treats that as an error until tsup stops
|
||||
// (https://github.com/egoist/tsup/issues/1388)
|
||||
dts: {
|
||||
compilerOptions: {
|
||||
ignoreDeprecations: "6.0",
|
||||
ignoreDeprecations: '6.0',
|
||||
},
|
||||
},
|
||||
clean: true,
|
||||
target: "es2022",
|
||||
target: 'es2022',
|
||||
sourcemap: true,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user