summaryrefslogtreecommitdiff
path: root/cli/tests/tsc
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/tsc')
-rw-r--r--cli/tests/tsc/a.js2
-rw-r--r--cli/tests/tsc/d.ts3
-rw-r--r--cli/tests/tsc/node_modules/b.js2
-rw-r--r--cli/tests/tsc/node_modules/c.js1
-rw-r--r--cli/tests/tsc/test.js4
5 files changed, 0 insertions, 12 deletions
diff --git a/cli/tests/tsc/a.js b/cli/tests/tsc/a.js
deleted file mode 100644
index 5a7b3ff93..000000000
--- a/cli/tests/tsc/a.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import { v4 } from "./d.ts";
-export function a() {}
diff --git a/cli/tests/tsc/d.ts b/cli/tests/tsc/d.ts
deleted file mode 100644
index 3c74b8c83..000000000
--- a/cli/tests/tsc/d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function v4() {
- return "hello";
-}
diff --git a/cli/tests/tsc/node_modules/b.js b/cli/tests/tsc/node_modules/b.js
deleted file mode 100644
index 191660935..000000000
--- a/cli/tests/tsc/node_modules/b.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import c from "./c.js";
-export { c };
diff --git a/cli/tests/tsc/node_modules/c.js b/cli/tests/tsc/node_modules/c.js
deleted file mode 100644
index cff71c44a..000000000
--- a/cli/tests/tsc/node_modules/c.js
+++ /dev/null
@@ -1 +0,0 @@
-export default function c() {}
diff --git a/cli/tests/tsc/test.js b/cli/tests/tsc/test.js
deleted file mode 100644
index b7f46b351..000000000
--- a/cli/tests/tsc/test.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import { a } from "./a.js";
-import { c } from "./node_modules/b.js";
-
-console.log("hello");