From 6128e9e2d2c890ac3f33c2913af209997f8bfbfc Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 17 Feb 2021 20:04:47 -0330 Subject: [PATCH] Fix `tsconfig.json` indentation This file was the only one in the repo to use tabs for indentation. It has been updated to use spaces. --- tsconfig.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fe2ce4c7179..3c00be1f3d1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,22 +1,22 @@ { - "compilerOptions": { - "declaration": true, - "declarationDir": "dist", - "experimentalDecorators": true, - "importHelpers": false, - "module": "commonjs", - "moduleResolution": "node", - "noImplicitAny": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "outDir": "dist", - "removeComments": false, - "sourceMap": true, - "inlineSources": true, - "strict": true, - "target": "es6" - }, - "include": [ - "./src/**/*.ts" - ] + "compilerOptions": { + "declaration": true, + "declarationDir": "dist", + "experimentalDecorators": true, + "importHelpers": false, + "module": "commonjs", + "moduleResolution": "node", + "noImplicitAny": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "outDir": "dist", + "removeComments": false, + "sourceMap": true, + "inlineSources": true, + "strict": true, + "target": "es6" + }, + "include": [ + "./src/**/*.ts" + ] }