Skip to content

Commit

Permalink
build: fix build issue (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
climba03003 authored Sep 12, 2024
1 parent c1ce321 commit fe854b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/abstract-send/fast-decode-uri-component.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
declare module 'fast-decode-uri-component' {
export default (path: string): string | undefined
function decode(path: string): string | undefined
export default decode
}
2 changes: 1 addition & 1 deletion packages/abstract-send/tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "lib"
},
"include": ["lib/**/*"]
"include": ["lib/**/*", "fast-decode-uri-component.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/abstract-send/tsconfig.mjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "ESNext",
"outDir": "lib/mjs"
},
"include": ["lib/**/*"],
"include": ["lib/**/*", "fast-decode-uri-component.d.ts"],
"tsc-alias": {
"resolveFullPaths": true
}
Expand Down

0 comments on commit fe854b4

Please sign in to comment.