From eadb3da2b4b142707bb12b29eb7e10062599bd40 Mon Sep 17 00:00:00 2001 From: Navin Moorthy Date: Thu, 29 Jun 2023 11:31:49 +0530 Subject: [PATCH] =?UTF-8?q?chore(tsconfig):=20=F0=9F=A7=B9=20update=20comp?= =?UTF-8?q?iler=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 354736f..a9dcb17 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,23 +1,22 @@ { "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "allowJs": true, + "target": "ESNext", + "lib": ["dom", "dom.iterable", "esnext", "esnext.asynciterable"], + "typeRoots": ["./node_modules/@types", "@types"], + "moduleResolution": "NodeNext", + "module": "NodeNext", + "strict": true, "downlevelIteration": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "incremental": true, "isolatedModules": true, "jsx": "preserve", - "lib": ["dom", "dom.iterable", "esnext"], - "module": "ESNext", - "moduleResolution": "node", "noEmit": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, - "strict": true, - "target": "ES2021", - "typeRoots": ["./node_modules/@types", "@types"] + "allowJs": true }, "exclude": ["node_modules"], "include": ["./**/*"],