From b53f1872bb0f7daffa460e9e498eeff7caeff1e0 Mon Sep 17 00:00:00 2001 From: Pavel Mineev Date: Wed, 8 Apr 2020 17:40:51 +0300 Subject: [PATCH] create type check config by extending default config --- frontend/tsconfig.typecheck.json | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/frontend/tsconfig.typecheck.json b/frontend/tsconfig.typecheck.json index fcdda545..adf48b4c 100644 --- a/frontend/tsconfig.typecheck.json +++ b/frontend/tsconfig.typecheck.json @@ -1,26 +1,6 @@ { + "extends": "./tsconfig.json", "compilerOptions": { - "lib": ["es2017", "dom"], - "target": "es2017", - "jsx": "react", - "jsxFactory": "h", - "module": "esnext", - "esModuleInterop": true, - "moduleResolution": "node", - "noImplicitReturns": true, - "noImplicitAny": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "strict": true, - "baseUrl": "./", - "alwaysStrict": true, - "resolveJsonModule": true, - "forceConsistentCasingInFileNames": true, - "paths": { - "*": ["@types/*"], - "@app/*": ["app/*"] - } - }, - "include": ["app/**/*"], - "exclude": ["node_modules"] + "incremental": false + } }