diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-03-07 20:40:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-08 06:40:11 +1000 |
commit | 33eea0400d6b72d84c8fe80d1fbf9f02723187fb (patch) | |
tree | aaf6a5ac6df3dc53aefb82c090f28e5843c8aeed /cli/tests/087_hello.ts | |
parent | 74584eef04a0a395d903ec9fcb8d91caf305be41 (diff) |
fix(cli/ast): Pass importsNotUsedAsValues to swc (#9714)
Fixes #9709
Diffstat (limited to 'cli/tests/087_hello.ts')
-rw-r--r-- | cli/tests/087_hello.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/087_hello.ts b/cli/tests/087_hello.ts new file mode 100644 index 000000000..1a9d8f114 --- /dev/null +++ b/cli/tests/087_hello.ts @@ -0,0 +1,2 @@ +export type SomeType = unknown; +console.log("Hello, world!"); |