From ebdb81a2901e17d22806d71dd3f65c63b60d3d8e Mon Sep 17 00:00:00 2001 From: Risto Keravuori Date: Sat, 9 Mar 2024 13:43:30 -0800 Subject: [PATCH] Update tsconfig for 5.4 (#226) --- tsconfig/base.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tsconfig/base.json b/tsconfig/base.json index 4089d357..df16899e 100644 --- a/tsconfig/base.json +++ b/tsconfig/base.json @@ -2,23 +2,18 @@ "compilerOptions": { "allowImportingTsExtensions": true, "allowJs": true, - "allowSyntheticDefaultImports": true, - "esModuleInterop": true, "exactOptionalPropertyTypes": true, - "forceConsistentCasingInFileNames": true, "incremental": true, "isolatedModules": true, "jsx": "preserve", "lib": ["esnext", "dom"], - "module": "esnext", - "moduleResolution": "bundler", + "module": "preserve", "noEmit": true, "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true, "skipLibCheck": true, "strict": true, - "resolveJsonModule": true, "target": "esnext", "verbatimModuleSyntax": true }