From 821354381f3e1108bca7670cb8d84a95769d035b Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Fri, 14 May 2021 11:32:50 -0700 Subject: [PATCH] [Tests] add missing fixture from d903477f4e31be71e016f8af56cbe2a8d4f11c9c --- tests/files/typescript-no-compiler-options/index.d.ts | 3 +++ tests/files/typescript-no-compiler-options/tsconfig.json | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 tests/files/typescript-no-compiler-options/index.d.ts create mode 100644 tests/files/typescript-no-compiler-options/tsconfig.json diff --git a/tests/files/typescript-no-compiler-options/index.d.ts b/tests/files/typescript-no-compiler-options/index.d.ts new file mode 100644 index 000000000..953c3410b --- /dev/null +++ b/tests/files/typescript-no-compiler-options/index.d.ts @@ -0,0 +1,3 @@ +export as namespace Foo + +export function bar(): void diff --git a/tests/files/typescript-no-compiler-options/tsconfig.json b/tests/files/typescript-no-compiler-options/tsconfig.json new file mode 100644 index 000000000..2c63c0851 --- /dev/null +++ b/tests/files/typescript-no-compiler-options/tsconfig.json @@ -0,0 +1,2 @@ +{ +}