diff --git a/docs/resources/changelog.md b/docs/resources/changelog.md index 861161927..2e6c52444 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 7be59e668..1cdbd2138 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"]