summaryrefslogtreecommitdiff
path: root/cli/tests/module_graph
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/module_graph')
-rw-r--r--cli/tests/module_graph/file_tests-importjson.ts3
-rw-r--r--cli/tests/module_graph/file_tests-some.json5
2 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-importjson.ts b/cli/tests/module_graph/file_tests-importjson.ts
new file mode 100644
index 000000000..c2bc2bca7
--- /dev/null
+++ b/cli/tests/module_graph/file_tests-importjson.ts
@@ -0,0 +1,3 @@
+import * as config from "./some.json";
+
+console.log(config);
diff --git a/cli/tests/module_graph/file_tests-some.json b/cli/tests/module_graph/file_tests-some.json
new file mode 100644
index 000000000..567c4ba21
--- /dev/null
+++ b/cli/tests/module_graph/file_tests-some.json
@@ -0,0 +1,5 @@
+{
+ "config": {
+ "debug": true
+ }
+}