From e1ef30943dd5a31edc609650fa39c293214504f8 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Sun, 10 Nov 2024 15:35:48 +0800 Subject: [PATCH] chore: rename `bundler` to `Bundler` for consistency While the configuration options are not case-sensitive, it is good to keep the casing consistent. The JSON schema at https://json.schemastore.org/tsconfig uses `Bundler`, so we should use the same casing. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 56402e7..6584fa9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ // We expect users to use bundlers. // So here we enable some resolution features that are only available in bundlers. - "moduleResolution": "bundler", + "moduleResolution": "Bundler", "resolveJsonModule": true, "allowImportingTsExtensions": true, // Even files without `import` or `export` are treated as modules.