From bdfe4f206b37631633f9e1914414934b18caa89f Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Mon, 22 Aug 2022 13:53:38 +0300 Subject: [PATCH] SImplifying tsconfig --- tsconfig.json | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b9cc80c..01bf528 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,18 +2,12 @@ "compilerOptions": { "target": "es5", "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": false, - "forceConsistentCasingInFileNames": true, + "strict": true, "noEmit": true, - "incremental": true, - "esModuleInterop": true, "module": "esnext", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve" + "moduleResolution": "node", + "isolatedModules": true }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], + "include": ["**/*.ts", "**/*.tsx"] }