From 0ff8b7edd84d3f51e9f6baf0ca5dbc92b196da9e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 9 Jun 2025 22:31:14 +0300 Subject: [PATCH] chore(share): fix typecheck issues --- apps/client/tsconfig.json | 7 +++++-- packages/share-theme/tsconfig.json | 2 +- tsconfig.json | 3 +++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/client/tsconfig.json b/apps/client/tsconfig.json index c51d8fdcd..089883f81 100644 --- a/apps/client/tsconfig.json +++ b/apps/client/tsconfig.json @@ -3,14 +3,17 @@ "files": [], "include": [], "references": [ + { + "path": "../../packages/share-theme" + }, { "path": "../../packages/highlightjs" }, { - "path": "../../packages/codemirror" + "path": "../../packages/commons" }, { - "path": "../../packages/commons" + "path": "../../packages/codemirror" }, { "path": "../../packages/ckeditor5" diff --git a/packages/share-theme/tsconfig.json b/packages/share-theme/tsconfig.json index ac91e669c..b53a558ad 100644 --- a/packages/share-theme/tsconfig.json +++ b/packages/share-theme/tsconfig.json @@ -1,4 +1,5 @@ { + "extends": "../../tsconfig.base.json", "compilerOptions": { "noImplicitAny": true, "noImplicitThis": true, @@ -9,7 +10,6 @@ "moduleResolution": "Node16", "target": "ES2022", "rootDir": "src", - "outDir": "lib/cjs", "module": "Node16" }, "include": ["src/**/*"] diff --git a/tsconfig.json b/tsconfig.json index 487e76f3e..db83e7978 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -56,6 +56,9 @@ }, { "path": "./packages/highlightjs" + }, + { + "path": "./packages/share-theme" } ] }