-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
refactor: update @mjackson/*
packages to @remix-run/*
#14070
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
base: dev
Are you sure you want to change the base?
refactor: update @mjackson/*
packages to @remix-run/*
#14070
Conversation
|
eb78570
to
2df9d31
Compare
It looks like we have some CJS/ESM incompatibilities with the new packages? |
2df9d31
to
1c1af3e
Compare
1c1af3e
to
a7a2238
Compare
Should update |
a7a2238
to
24e9076
Compare
24e9076
to
7507c5f
Compare
@brophdawg11 It indeed seems like we have some CJS/ESM issues here, but can't really find out the actual problem 🤔 |
The solution is to migrate the |
Minimal changes: "type": "module",
{
"include": ["**/*.ts"],
"exclude": ["dist", "__tests__", "node_modules"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strict": true,
"jsx": "react",
"declaration": true,
"rootDir": ".",
"outDir": "./dist",
"noEmit": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
}
} |
@alexandrsashin that would technically be a breaking change I guess, so I'll wait for @brophdawg11 and the rest of the team to decide what we want to do with this |
No description provided.