diff options
author | silverwind <me@silverwind.io> | 2024-08-30 09:36:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 07:36:53 +0000 |
commit | e5e40787dcce40f69d3489adca2a80cf685a3fe8 (patch) | |
tree | c47a002bccf3d6be54cc36cac33f0255f03f6be3 /tsconfig.json | |
parent | 1f924d845eeea263eb0bf8f379cc93039d7f37ea (diff) | |
download | gitea-e5e40787dcce40f69d3489adca2a80cf685a3fe8.tar.gz gitea-e5e40787dcce40f69d3489adca2a80cf685a3fe8.zip |
Move web globals to `web_src/js/globals.d.ts` (#31943)
This file serves exclusively to support `web_src/js`, so move it there.
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 2 |
1 files changed, 1 insertions, 1 deletions
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", ], } } |