From fcd0cb84fe5deb0c14cfa402921f569d58ed1a33 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Fri, 28 Mar 2025 20:59:51 +0000 Subject: [PATCH] Format --- frontend/obsidian-plugin/tsconfig.json | 11 ++++++++--- frontend/sync-client/tsconfig.json | 8 +++++--- frontend/test-client/tsconfig.json | 11 ++++++++--- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/frontend/obsidian-plugin/tsconfig.json b/frontend/obsidian-plugin/tsconfig.json index 90ae756e..09dab427 100644 --- a/frontend/obsidian-plugin/tsconfig.json +++ b/frontend/obsidian-plugin/tsconfig.json @@ -6,7 +6,12 @@ "strict": true, "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, - "lib": ["DOM", "ESNext"] + "lib": [ + "DOM", + "ESNext" + ] }, - "exclude": ["./dist"] -} + "exclude": [ + "./dist" + ] +} \ No newline at end of file diff --git a/frontend/sync-client/tsconfig.json b/frontend/sync-client/tsconfig.json index ee31a31e..024e7b99 100644 --- a/frontend/sync-client/tsconfig.json +++ b/frontend/sync-client/tsconfig.json @@ -6,10 +6,12 @@ "allowSyntheticDefaultImports": true, "moduleResolution": "bundler", "lib": [ - "DOM" // to get "fetch" + "DOM" // to get `fetch` & `WebSocket` ], "declaration": true, "declarationDir": "./dist/types" }, - "exclude": ["./dist"] -} + "exclude": [ + "./dist" + ] +} \ No newline at end of file diff --git a/frontend/test-client/tsconfig.json b/frontend/test-client/tsconfig.json index 67691c50..4995a2bc 100644 --- a/frontend/test-client/tsconfig.json +++ b/frontend/test-client/tsconfig.json @@ -5,8 +5,13 @@ "target": "ES2022", "module": "CommonJS", "esModuleInterop": true, - "lib": ["DOM", "ESNext"], + "lib": [ + "DOM", + "ESNext" + ], "moduleResolution": "node" }, - "exclude": ["./dist"] -} + "exclude": [ + "./dist" + ] +} \ No newline at end of file