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"] }