diff options
Diffstat (limited to 'tests/registry/jsr/@denotest/no-module-graph/0.1.0')
-rw-r--r-- | tests/registry/jsr/@denotest/no-module-graph/0.1.0/TestClass.ts | 1 | ||||
-rw-r--r-- | tests/registry/jsr/@denotest/no-module-graph/0.1.0/mod.ts | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/registry/jsr/@denotest/no-module-graph/0.1.0/TestClass.ts b/tests/registry/jsr/@denotest/no-module-graph/0.1.0/TestClass.ts new file mode 100644 index 000000000..88ac04c12 --- /dev/null +++ b/tests/registry/jsr/@denotest/no-module-graph/0.1.0/TestClass.ts @@ -0,0 +1 @@ +export default class TestClass {} diff --git a/tests/registry/jsr/@denotest/no-module-graph/0.1.0/mod.ts b/tests/registry/jsr/@denotest/no-module-graph/0.1.0/mod.ts new file mode 100644 index 000000000..57600eb4b --- /dev/null +++ b/tests/registry/jsr/@denotest/no-module-graph/0.1.0/mod.ts @@ -0,0 +1,3 @@ +export default "0.1.0"; + +export { default as TestClass } from "./TestClass.ts"; |