Skip to content

Commit

Permalink
Fix module paths that don't support tsconfig paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Nov 5, 2024
1 parent 4c82867 commit 4e565b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fixture/example/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
number,
string,
url,
} from "austenite";
} from "../../../src/index.js";

export const cdnUrl = url("CDN_URL", "CDN to use when serving static assets", {
protocols: ["http:", "https:"],
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/example/run.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { initialize } from "austenite/node";
import { initialize } from "../../../src/node.js";
import {
cdnUrl,
earthAtomCount,
Expand Down

0 comments on commit 4e565b0

Please sign in to comment.