From 5092b3c8a68be9dc42c055741d5ff1d230dd7422 Mon Sep 17 00:00:00 2001 From: Daniel Nalborczyk Date: Fri, 3 Sep 2021 10:38:36 -0400 Subject: [PATCH 1/2] chore: use forceConsistentCasingInFileNames in ts-config --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index bbbd924248b..0fcf5686f1b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "allowSyntheticDefaultImports": true, "diagnostics": true, + "forceConsistentCasingInFileNames": true, "isolatedModules": true, "module": "ESNext", "moduleResolution": "Node", From 17fa209a443f838b428d89199d39eaafc87e9b89 Mon Sep 17 00:00:00 2001 From: Daniel Nalborczyk Date: Fri, 3 Sep 2021 10:41:15 -0400 Subject: [PATCH 2/2] nit --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0fcf5686f1b..d397a2d7e6b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "resolveJsonModule": true, "skipLibCheck": true, "strict": true, - "target": "es2018" + "target": "ES2018" }, "include": ["typings/**/*.d.ts", "src", "cli", "browser", "rollup.config.ts"], "exclude": ["dist", "node_modules", "test/typescript"]