You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What build tool (or framework if it abstracts the build tool) are you using?
Typescript type checking with tsc
What version of Node.js are you using?
For example: v18.3.0
What operating system are you using?
Ubuntu 20.0 LTS
Describe your issue
In our project, we run tsc to typecheck.
Even if not used directly in my codebase, typescript reads the type definitions of tailwindcss.
Since 3.1.1, doing so on our Github Actions CI, we run into a Error: node_modules/tailwindcss/types/config.d.ts(1,37): error TS2307: Cannot find module './generated/CorePluginList' or its corresponding type declarations. error.
Indeed, by doing a ls of the directory, we see that the file is generated ascorePluginList.d.ts.
PS: this not an issue on Mac OS.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this! We all run macOS and it's case insensitive by default because a startling amount of software doesn't work with case sensitive file systems so this slipped by. The fix has been merged and will be available in our next release. In the meantime you can use our insiders build (which should be out in a few minutes) by npm install tailwindcss@insiders
What version of Tailwind CSS are you using?
v3.1.1
What build tool (or framework if it abstracts the build tool) are you using?
Typescript type checking with
tsc
What version of Node.js are you using?
For example: v18.3.0
What operating system are you using?
Ubuntu 20.0 LTS
Describe your issue
In our project, we run tsc to typecheck.
Even if not used directly in my codebase, typescript reads the type definitions of tailwindcss.
Since 3.1.1, doing so on our Github Actions CI, we run into a
Error: node_modules/tailwindcss/types/config.d.ts(1,37): error TS2307: Cannot find module './generated/CorePluginList' or its corresponding type declarations.
error.Indeed, by doing a ls of the directory, we see that the file is generated as
corePluginList.d.ts
.PS: this not an issue on Mac OS.
The text was updated successfully, but these errors were encountered: