From 136dc80b3b2fb57a11523817f6a16c622fdfea2a Mon Sep 17 00:00:00 2001 From: Kanad Gupta <8854718+kanadgupta@users.noreply.github.com> Date: Fri, 15 Sep 2023 12:09:07 -0500 Subject: [PATCH] chore: tsconfig cleanup (#905) --- tsconfig.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 77b065067..26b1ec69c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,20 +2,14 @@ "compilerOptions": { "allowJs": true, "baseUrl": "./src", - "downlevelIteration": true, - "esModuleInterop": true, "experimentalDecorators": true, - "forceConsistentCasingInFileNames": true, - "lib": ["ES2020", "ES2021.Intl"], + "lib": ["ES2022"], "module": "NodeNext", "outDir": "dist/", - "paths": { - "editor": [".sink.d.ts"] - }, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, - "target": "ES2020", + "target": "ES2022", "useUnknownInCatchVariables": false }, "include": ["./src/**/*"]