From 0bffd2484464b4e3e05746452ee15bbcc7a12f89 Mon Sep 17 00:00:00 2001 From: Leo McArdle Date: Thu, 5 Dec 2024 17:45:36 +0000 Subject: [PATCH] fix(tsconfig): don't allow importing ts extensions in pwa follow up to https://github.com/mdn/yari/pull/12221 --- client/pwa/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/client/pwa/tsconfig.json b/client/pwa/tsconfig.json index 1f3d0ed8ddf0..0ce2a63fef89 100644 --- a/client/pwa/tsconfig.json +++ b/client/pwa/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../tsconfig.json", "compilerOptions": { "lib": ["dom", "dom.iterable", "es2021", "webworker"], + "allowImportingTsExtensions": false, "noEmit": false, "preserveConstEnums": true, "strictNullChecks": false,