chore(client): fix type errors

This commit is contained in:
Elian Doran 2025-07-24 22:26:29 +03:00
parent 4f99db0c90
commit 90accfcc48
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,11 @@ declare module "*.png" {
export default path; export default path;
} }
declare module "*.json" {
var content: any;
export default content;
}
declare module "*?url" { declare module "*?url" {
var path: string; var path: string;
export default path; export default path;

View File

@ -32,7 +32,8 @@
"eslint.config.mjs" "eslint.config.mjs"
], ],
"include": [ "include": [
"src/**/*.ts" "src/**/*.ts",
"src/**/*.json"
], ],
"references": [ "references": [
{ {