From e6e44d51acd20f52a7e6c65be2a8256e55881cc2 Mon Sep 17 00:00:00 2001 From: Roland Groza Date: Fri, 1 Nov 2024 20:42:21 +0900 Subject: [PATCH] feat: add mime type for jsonl file ext --- src/file.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/file.ts b/src/file.ts index d493b7c..c33a201 100644 --- a/src/file.ts +++ b/src/file.ts @@ -435,6 +435,8 @@ export const COMMON_MIME_TYPES = new Map([ ['json', 'application/json'], ['json5', 'application/json5'], ['jsonld', 'application/ld+json'], + // https://jsonlines.org/ + ['jsonl', 'application/jsonl'], ['jsonml', 'application/jsonml+json'], ['jsx', 'text/jsx'], ['jxr', 'image/jxr'],