From d83ba90f5d8c98b5f206dc56164cbef12e22b660 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 16 Sep 2020 03:44:28 -0700 Subject: [PATCH] Update tsconfig spacing --- tsconfig.json | 50 ++++++++++++++++++++++++-------------------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ec8c7429..54fcaac2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,29 +1,27 @@ { - "compilerOptions": { - "baseUrl": "./src", - "target": "es6", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], - "paths": { - "~*": ["./*"] + "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" }, - "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "module": "esnext", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react" - }, - "include": [ - ["src/**/*"] - ] + "include": ["src/**/*"] }