From 010b3d61e9e03af844607e6917bc7df23997f267 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Thu, 20 Feb 2025 22:21:07 +0000 Subject: [PATCH] Make strict --- frontend/obsidian-plugin/tsconfig.json | 6 +++--- frontend/sync-client/tsconfig.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/obsidian-plugin/tsconfig.json b/frontend/obsidian-plugin/tsconfig.json index 34954a99..c67d6512 100644 --- a/frontend/obsidian-plugin/tsconfig.json +++ b/frontend/obsidian-plugin/tsconfig.json @@ -3,9 +3,9 @@ "baseUrl": ".", "module": "ESNext", "target": "ES2023", - "noImplicitAny": true, "moduleResolution": "bundler", - "strictNullChecks": true, + "strict": true, "lib": ["DOM", "ESNext"] - } + }, + "exclude": ["./dist"] } diff --git a/frontend/sync-client/tsconfig.json b/frontend/sync-client/tsconfig.json index 184db366..6db72fcc 100644 --- a/frontend/sync-client/tsconfig.json +++ b/frontend/sync-client/tsconfig.json @@ -3,10 +3,10 @@ "baseUrl": ".", "module": "ESNext", "target": "ESNext", - "noImplicitAny": true, + "strict": true, "moduleResolution": "bundler", - "strictNullChecks": true, "allowSyntheticDefaultImports": true, "lib": ["DOM", "ESNext"] - } + }, + "exclude": ["./dist"] }