From e5e40787dcce40f69d3489adca2a80cf685a3fe8 Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 30 Aug 2024 09:36:53 +0200 Subject: [PATCH] Move web globals to `web_src/js/globals.d.ts` (#31943) This file serves exclusively to support `web_src/js`, so move it there. --- tsconfig.json | 2 +- types.d.ts => web_src/js/globals.d.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename types.d.ts => web_src/js/globals.d.ts (100%) diff --git a/tsconfig.json b/tsconfig.json index 5640c8e741..744f1511e9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -29,7 +29,7 @@ "sourceMap": true, "types": [ "vitest/globals", - "./types.d.ts", + "./web_src/js/globals.d.ts", ], } } diff --git a/types.d.ts b/web_src/js/globals.d.ts similarity index 100% rename from types.d.ts rename to web_src/js/globals.d.ts