summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/jsx/jsx-precompile/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/jsx/jsx-precompile/index.ts')
-rw-r--r--cli/tests/testdata/jsx/jsx-precompile/index.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/cli/tests/testdata/jsx/jsx-precompile/index.ts b/cli/tests/testdata/jsx/jsx-precompile/index.ts
deleted file mode 100644
index 0d56095e0..000000000
--- a/cli/tests/testdata/jsx/jsx-precompile/index.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-// deno-lint-ignore-file no-explicit-any
-export function jsx(
- _type: any,
- _props: any,
- _key: any,
- _source: any,
- _self: any,
-) {}
-// deno-lint-ignore-file no-explicit-any
-export const jsxAttr = (name: string, value: any) => `${name}="${value}"`;
-// deno-lint-ignore-file no-explicit-any
-export const jsxTemplate = (_template: string[], ..._exprs: any[]) => "";
-// deno-lint-ignore-file no-explicit-any
-export const jsxEscape = (_value: any) => "";
-console.log("imported", import.meta.url);
-
-declare global {
- namespace JSX {
- interface IntrinsicElements {
- [tagName: string]: Record<string, any>;
- }
- }
-}