diff --git a/packages/astro/tsconfig.json b/packages/astro/tsconfig.json index d3007163e..6a30c9692 100644 --- a/packages/astro/tsconfig.json +++ b/packages/astro/tsconfig.json @@ -9,9 +9,9 @@ }, "include": ["src"], "references": [ - { "path": "../runtime" }, - { "path": "../types" }, - { "path": "../components/react" }, + { "path": "../runtime/tsconfig.build.json" }, + { "path": "../types/tsconfig.build.json" }, + { "path": "../components/react/tsconfig.build.json" }, { "path": "../theme" } ] } diff --git a/packages/components/react/tsconfig.build.json b/packages/components/react/tsconfig.build.json index b90bf9bb6..8f98bf24c 100644 --- a/packages/components/react/tsconfig.build.json +++ b/packages/components/react/tsconfig.build.json @@ -7,5 +7,9 @@ }, "include": ["src"], "exclude": ["src/**/*.spec.ts"], - "references": [{ "path": "../../runtime" }, { "path": "../../theme" }, { "path": "../../types" }] + "references": [ + { "path": "../../runtime/tsconfig.build.json" }, + { "path": "../../theme" }, + { "path": "../../types/tsconfig.build.json" } + ] } diff --git a/packages/components/react/tsconfig.json b/packages/components/react/tsconfig.json index 5a7eba261..b1463c931 100644 --- a/packages/components/react/tsconfig.json +++ b/packages/components/react/tsconfig.json @@ -9,5 +9,9 @@ "rootDir": "src" }, "include": ["src"], - "references": [{ "path": "../../runtime" }, { "path": "../../theme" }, { "path": "../../types" }] + "references": [ + { "path": "../../runtime/tsconfig.build.json" }, + { "path": "../../theme" }, + { "path": "../../types/tsconfig.build.json" } + ] } diff --git a/packages/runtime/tsconfig.build.json b/packages/runtime/tsconfig.build.json index aba46a37c..eaa0a1ae8 100644 --- a/packages/runtime/tsconfig.build.json +++ b/packages/runtime/tsconfig.build.json @@ -7,5 +7,5 @@ }, "include": ["src"], "exclude": ["src/**/*.spec.ts"], - "references": [{ "path": "../types" }] + "references": [{ "path": "../types/tsconfig.build.json" }] } diff --git a/packages/runtime/tsconfig.json b/packages/runtime/tsconfig.json index d24ef997b..7ae5a43b0 100644 --- a/packages/runtime/tsconfig.json +++ b/packages/runtime/tsconfig.json @@ -6,5 +6,5 @@ "composite": true }, "include": ["src"], - "references": [{ "path": "../types" }, { "path": "../test-utils" }] + "references": [{ "path": "../types/tsconfig.build.json" }, { "path": "../test-utils" }] }