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,