From a8f53966c3e9ea237071c6a835686223aedc0021 Mon Sep 17 00:00:00 2001 From: NathanosDev Date: Thu, 25 Jan 2024 00:25:30 +0100 Subject: [PATCH] style: formatting --- examples/clock/tests/tsconfig.json | 4 ++-- examples/counter/tests/tsconfig.json | 4 ++-- examples/todo/tests/tsconfig.json | 4 ++-- packages/pic/tsconfig.json | 4 ++-- tsconfig.json | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/clock/tests/tsconfig.json b/examples/clock/tests/tsconfig.json index 68d0094..5c1575c 100644 --- a/examples/clock/tests/tsconfig.json +++ b/examples/clock/tests/tsconfig.json @@ -2,7 +2,7 @@ "extends": "../../../tsconfig.json", "compilerOptions": { "allowJs": true, - "types": ["jest", "node"] + "types": ["jest", "node"], }, - "include": ["./src/**/*.ts", "./clock/**/*.ts"] + "include": ["./src/**/*.ts", "./clock/**/*.ts"], } diff --git a/examples/counter/tests/tsconfig.json b/examples/counter/tests/tsconfig.json index 7541108..6fdbcea 100644 --- a/examples/counter/tests/tsconfig.json +++ b/examples/counter/tests/tsconfig.json @@ -2,7 +2,7 @@ "extends": "../../../tsconfig.json", "compilerOptions": { "allowJs": true, - "types": ["jest", "node"] + "types": ["jest", "node"], }, - "include": ["./src/**/*.ts", "./counter/**/*.ts"] + "include": ["./src/**/*.ts", "./counter/**/*.ts"], } diff --git a/examples/todo/tests/tsconfig.json b/examples/todo/tests/tsconfig.json index 4d6fb11..87f1b1e 100644 --- a/examples/todo/tests/tsconfig.json +++ b/examples/todo/tests/tsconfig.json @@ -2,7 +2,7 @@ "extends": "../../../tsconfig.json", "compilerOptions": { "allowJs": true, - "types": ["jest", "node"] + "types": ["jest", "node"], }, - "include": ["./src/**/*.ts", "./todo/**/*.ts"] + "include": ["./src/**/*.ts", "./todo/**/*.ts"], } diff --git a/packages/pic/tsconfig.json b/packages/pic/tsconfig.json index 83218d7..68f92aa 100644 --- a/packages/pic/tsconfig.json +++ b/packages/pic/tsconfig.json @@ -5,6 +5,6 @@ "outDir": "dist", "declaration": true, "sourceMap": true, - "stripInternal": true - } + "stripInternal": true, + }, } diff --git a/tsconfig.json b/tsconfig.json index 9c0867a..cdfcde8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,6 +20,6 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, - "types": ["node"] - } + "types": ["node"], + }, }