diff options
Diffstat (limited to 'tests/specs/npm/workspace_basic/main.ts')
-rw-r--r-- | tests/specs/npm/workspace_basic/main.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/specs/npm/workspace_basic/main.ts b/tests/specs/npm/workspace_basic/main.ts new file mode 100644 index 000000000..316503b9c --- /dev/null +++ b/tests/specs/npm/workspace_basic/main.ts @@ -0,0 +1,6 @@ +// should resolve these as bare specifiers within the workspace +import * as a from "@denotest/a"; +import * as c from "@denotest/c"; + +a.sayHello(); +c.sayHello(); |