From fc2d4be9e81ba8a6ecff17dd9a63c0f131e65182 Mon Sep 17 00:00:00 2001 From: Hellen Date: Tue, 23 Jul 2024 11:01:04 +0300 Subject: [PATCH] fix: tsconfig.json (#18) --- tsconfig.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ced4812..5b14f46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,12 @@ { - "extends": "@gravity-ui/tsconfig/tsconfig", + "extends": "@gravity-ui/tsconfig/tsconfig.json", "compilerOptions": { + "module": "ESNext", "declaration": true, + "strictNullChecks": true, "resolveJsonModule": true, - "outDir": "build", - "module": "esnext", - "jsx": "react" + "isolatedModules": true, + "outDir": "build" }, - "include": ["src/**/*.ts", "src/**/*.tsx"], - "exclude": ["**/__tests__", "**/*.test.ts", "**/*.test.tsx"] + "include": ["src"] }