From 9ff029540fbbb97824f94ba25f7bdac9bb7387cb Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 24 Jan 2022 18:40:09 -0800 Subject: [PATCH] Clean up tsconfig --- tsconfig.json | 46 ++++++++++++++++++++++------------------------ 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 54fcaac2..46d5e5e8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,27 +1,25 @@ { - "compilerOptions": { - "baseUrl": "./src", - "target": "es6", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], - "paths": { - "~*": ["./*"] - }, - "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "module": "esnext", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react" + "compilerOptions": { + "allowJs": true, + "allowSyntheticDefaultImports": true, + "baseUrl": "./src", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "incremental": true, + "isolatedModules": true, + "jsx": "preserve", + "lib": ["dom", "dom.iterable", "esnext"], + "module": "esnext", + "moduleResolution": "node", + "noEmit": true, + "paths": { + "~*": ["./*"] }, - "include": ["src/**/*"] + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "es6" + }, + "include": ["src/**/*.tsx"], + "exclude": ["node_modules", ".vscode"] }