David May

Results 4 comments of David May

Came here to suggest something similar because the package `vite-plugin-dts` utilizes `api-extractor` however the hard dependency on typescript breaks typescript 4.9 type generation, and we can't override it using yarn...

If you need a work around that doesn't require renaming your file extensions; you can do the following. 1. Add a new `package.json` to the root of your `./themes` directory...

To give you an idea of my folder structure: ``` src\ themes\ brand1\ theme.ts (export const theme = extendTheme(...); export default theme;) index.ts package.json (type: "commonjs") package.json (type: "module") ```...

> @XDoubleU I ran into this same issue when migrating a project from yarn classic to yarn 3.5 with our package.json lint command using eslint. Try adding single quotes around...