From c271b0747672e0225073254a1e1d0ef0371859f7 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 11 Feb 2022 08:25:11 -0500 Subject: [PATCH] fix build --- docs/resources/changelog.md | 6 +++++- tsconfig.prod.json | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/resources/changelog.md b/docs/resources/changelog.md index 86116192..2e6c5244 100644 --- a/docs/resources/changelog.md +++ b/docs/resources/changelog.md @@ -6,9 +6,13 @@ Components with the Experimental bad _During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛 +## 2.0.0-beta.67 + +- Fixed a TypeScript config regression introduced in [#647](https://github.com/shoelace-style/shoelace/pull/647) that removed the `rootDir`, breaking the expected build output + ## 2.0.0-beta.66 -- Fixes a bug that prevented types from being shipped +- Attempted to fix a bug that prevented types from being generated in the build ## 2.0.0-beta.65 diff --git a/tsconfig.prod.json b/tsconfig.prod.json index 7be59e66..1cdbd213 100644 --- a/tsconfig.prod.json +++ b/tsconfig.prod.json @@ -1,7 +1,8 @@ { "extends": "./tsconfig", "compilerOptions": { - "baseUrl": "." + "baseUrl": ".", + "rootDir": "./src" }, "include": ["src"], "exclude": ["src/**/*.test.ts"]