0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-28 00:59:18 -05:00

pr feedback

This commit is contained in:
martabal 2024-10-25 12:45:32 +02:00
parent e5aafff9ec
commit a25df32a65
No known key found for this signature in database
GPG key ID: C00196E3148A52BD

View file

@ -5,7 +5,7 @@ import theme from '$lib/utils/theme?raw';
import type { Handle } from '@sveltejs/kit';
import { ModuleKind, transpileModule } from 'typescript';
export const transpileFile = (content: string) => {
const transpileFile = (content: string) => {
const result = transpileModule(content, {
compilerOptions: { module: ModuleKind.ES2020, removeComments: true },
});