Skip to content

Commit eeb1b0a

Browse files
committed
fix
1 parent 4aa1d34 commit eeb1b0a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"compilerOptions": {
55
"moduleResolution": "node",
66
"module": "esnext",
7-
"baseUrl": ".",
87
"paths": {
98
"@/*": ["./src/*"],
109
"@/tests/*": ["./tests/*"]

tsup.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ import { defineConfig } from 'tsup';
22

33
export default defineConfig((options) => ({
44
clean: !options.watch,
5-
dts: true,
5+
dts: {
6+
compilerOptions: {
7+
ignoreDeprecations: '6.0',
8+
},
9+
},
610
splitting: true,
711
entry: ['src/*.ts', 'src/*.tsx', '!src/*.test.ts', '!src/*.test.tsx'],
812
format: ['cjs', 'esm'],

0 commit comments

Comments
 (0)