We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cca85d commit 2589a12Copy full SHA for 2589a12
packages/js-runtime/program.ts
@@ -1,6 +1,6 @@
1
import { isDeno } from "@commontools/utils/env";
2
import { ProgramResolver, Source } from "./interface.ts";
3
-import { dirname, join } from "@std/path";
+import { dirname, join } from "@std/path/posix";
4
5
export class InMemoryProgram implements ProgramResolver {
6
private modules: Record<string, string>;
packages/js-runtime/typescript/resolver.ts
import ts from "typescript";
import { Program, ProgramResolver, Source } from "../interface.ts";
export type UnresolvedModuleHandling =
| { type: "allow"; identifiers: string[] }
0 commit comments