From a9247f335449abf24b9d8a317d45e193fd74ae85 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 15 Jan 2022 20:28:36 +0000 Subject: [PATCH] [TS] Create .d.mts files by default --- ts/.gitignore | 1 + ts/tsconfig.json | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/.gitignore b/ts/.gitignore index ccf24f9f..f17eb7be 100644 --- a/ts/.gitignore +++ b/ts/.gitignore @@ -1,2 +1,3 @@ *.mjs *.mjs.map +*.d.mts diff --git a/ts/tsconfig.json b/ts/tsconfig.json index 250c28f7..a2867b84 100644 --- a/ts/tsconfig.json +++ b/ts/tsconfig.json @@ -4,7 +4,9 @@ "module": "es2020", "sourceMap": true, "esModuleInterop": false, - "allowSyntheticDefaultImports": true, + "stripInternal": true, + + "allowSyntheticDefaultImports": false, "forceConsistentCasingInFileNames": true, "declaration": true, "strict": true, -- 2.30.2