From ea3ae788333275c197bc01b75564777ef57ee77f Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 17 Sep 2018 08:32:51 -0700 Subject: [PATCH] Format tsconfig.json --- tsconfig.json | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7856ba45..7107d1a7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,23 +1,17 @@ { - "compilerOptions": { - "moduleResolution": "node", - "module": "commonjs", - "target": "esnext", - "allowJs": true, - "skipLibCheck": true, - "allowSyntheticDefaultImports": true, - "resolveJsonModule": true, - "strict": true, - "jsx": "preserve", - "noEmit": true, - "pretty": true - }, - "include": [ - "js/**/*.js", - "js/**/*.ts" - ], - "exclude": [ - "node_modules", - "**/*.spec.ts" - ] + "compilerOptions": { + "moduleResolution": "node", + "module": "commonjs", + "target": "esnext", + "allowJs": true, + "skipLibCheck": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "strict": true, + "jsx": "preserve", + "noEmit": true, + "pretty": true + }, + "include": ["js/**/*.js", "js/**/*.ts"], + "exclude": ["node_modules", "**/*.spec.ts"] }