fix build

This commit is contained in:
Cory LaViska
2022-02-11 08:25:11 -05:00
parent 6b428c1ea9
commit c271b07476
2 changed files with 7 additions and 2 deletions

View File

@@ -6,9 +6,13 @@ Components with the <sl-badge variant="warning" pill>Experimental</sl-badge> 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

View File

@@ -1,7 +1,8 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"baseUrl": "."
"baseUrl": ".",
"rootDir": "./src"
},
"include": ["src"],
"exclude": ["src/**/*.test.ts"]