From 4e565b07595b21a0d39a22f8217ea0688b5394bf Mon Sep 17 00:00:00 2001 From: Erin Millard Date: Tue, 5 Nov 2024 15:46:27 +1000 Subject: [PATCH] Fix module paths that don't support tsconfig paths --- test/fixture/example/env.ts | 2 +- test/fixture/example/run.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fixture/example/env.ts b/test/fixture/example/env.ts index e6f4fd9..6f75358 100644 --- a/test/fixture/example/env.ts +++ b/test/fixture/example/env.ts @@ -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:"], diff --git a/test/fixture/example/run.ts b/test/fixture/example/run.ts index de789e4..6a1375e 100644 --- a/test/fixture/example/run.ts +++ b/test/fixture/example/run.ts @@ -1,4 +1,4 @@ -import { initialize } from "austenite/node"; +import { initialize } from "../../../src/node.js"; import { cdnUrl, earthAtomCount,