From 8e107fd206d3c7520fc566cc5f8570f1ea559f22 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Tue, 24 Nov 2020 19:10:48 +0100 Subject: [PATCH] basic prettier config --- .prettierrc | 4 ++++ tsconfig.json | 16 ++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..5a938ce --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ + "tabWidth": 4, + "useTabs": false +} diff --git a/tsconfig.json b/tsconfig.json index 954e627..85549a2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { - "compilerOptions": { - "target": "es6", - "module": "commonjs", - "rootDir": "./src", - "outDir": "./build", - "esModuleInterop": true, - "strict": true - } + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "rootDir": "./src", + "outDir": "./build", + "esModuleInterop": true, + "strict": true + } } \ No newline at end of file