-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next.js 13 support #281
Next.js 13 support #281
Conversation
Quickly checked the new Considering the feature is also experimental, I don't foresee I will also open an issue on Next.js' side to explain those different usecases, and see what the team thinks about them. edit: done, cf vercel/next.js#42136 |
noice 😎 I think we could do a first release without support for app-dir / turbopack. I'll quickly mess around with app-dir just in case. |
👀 |
transpilePackages
optiontranspilePackages
app/
About the next
transpilePackages
option:test-local-module
(import and use local ES module)test-npm-module
(import and use npm ES module)test-local-typescript-module
(import a local module written in TypeScript)test-css-module
(import local component importing a css module)test-scss-module
(import local component importing a scss module)test-global-ccss
(import local component import css to be injected globally)test-global-scss
(import local component import scss to be injected globally)TLDR: Transpiling classic modules is ok. Transpiling local TypeScript libraries or component using CSS does not work.