diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-06 00:10:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 00:10:36 +0100 |
commit | 39bbbbce70c13575857b216b79ec21c37a923760 (patch) | |
tree | 7791fb712083a8471d132e42b3f3f4ae851d2e55 /cli/tests/inline_js_source_map.ts | |
parent | 8d1ee3bfaf9f062356858b6b7113be0ab7fa5ba6 (diff) |
fix: use inline source maps when present in js (#8995)
Diffstat (limited to 'cli/tests/inline_js_source_map.ts')
-rw-r--r-- | cli/tests/inline_js_source_map.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/inline_js_source_map.ts b/cli/tests/inline_js_source_map.ts new file mode 100644 index 000000000..5ae7c226a --- /dev/null +++ b/cli/tests/inline_js_source_map.ts @@ -0,0 +1,6 @@ +1 + 1; +interface Test { + hello: string; +} + +// throw new Error("Hello world!" as string); |