Remove file extensions from import statements

Updated import statements across several server files to omit explicit file extensions. This improves compatibility with module resolution and aligns with common import practices.
This commit is contained in:
CanbiZ
2025-11-28 13:21:03 +01:00
parent 737c9c94f3
commit e0baa79d6b
4 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
// JavaScript wrapper for githubJsonService.ts
// This allows the JavaScript autoSyncService.js to import the TypeScript service
import { githubJsonService } from './githubJsonService.ts';
import { githubJsonService } from './githubJsonService';
export { githubJsonService };