Skip to content

Commit

Permalink
fix esm compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sepbot committed Dec 7, 2024
1 parent 79b043b commit d5b5f54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"pnpm": ">=9"
},
"scripts": {
"prebuild": "rm -rf *.tsbuildinfo",
"prebuild": "rm -rf ./dist ./*.tsbuildinfo",
"build": "tsc --project tsconfig-build.json",
"postbuild": "tsc-alias --project tsconfig-build.json",
"format": "biome check --verbose --write --unsafe",
Expand Down
2 changes: 1 addition & 1 deletion static/etc.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { from as toIterable } from "ix/asynciterable";
import { type Observable, ReplaySubject } from "rxjs";
import { type Dispatcher, Pool } from "undici";
import { setupSSH } from "./ssh";
import { setupSSH } from "~/ssh";

export type DockerClientParams = {
baseURL: URL;
Expand Down
3 changes: 3 additions & 0 deletions tsconfig-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"rootDir": "lib",
"outDir": "dist",
"declarationDir": "dist"
},
"tsc-alias": {
"resolveFullPaths": true
}
}

0 comments on commit d5b5f54

Please sign in to comment.