diff options
Diffstat (limited to 'tests/testdata/check/exclude_option/index.ts')
-rw-r--r-- | tests/testdata/check/exclude_option/index.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/testdata/check/exclude_option/index.ts b/tests/testdata/check/exclude_option/index.ts new file mode 100644 index 000000000..8335ca3a2 --- /dev/null +++ b/tests/testdata/check/exclude_option/index.ts @@ -0,0 +1,5 @@ +import { nothing } from "./ignored/index.ts"; + +const foo = 1; + +export { foo, nothing }; |