From 862a6bb19e416ec222fba54ce94735ec6e11c4f5 Mon Sep 17 00:00:00 2001 From: ct Date: Thu, 29 May 2025 01:28:13 +0800 Subject: [PATCH] Update --- resources/js/types/index.ts | 2 ++ tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 resources/js/types/index.ts diff --git a/resources/js/types/index.ts b/resources/js/types/index.ts new file mode 100644 index 0000000..3211245 --- /dev/null +++ b/resources/js/types/index.ts @@ -0,0 +1,2 @@ +// Re-export all types from index.d.ts +export type * from './index.d.ts'; diff --git a/tsconfig.json b/tsconfig.json index f755228..3d8802f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "baseUrl": ".", "paths": { "~/*": ["./app/*"], - "@/*": ["./app/*"] + "@/*": ["./resources/js/*"] }, "esModuleInterop": true, "verbatimModuleSyntax": true,