Update dependency framer-motion to v11.11.1 - abandoned #52

Closed
renovate-bot wants to merge 41 commits from renovate/framer-motion-11.x-lockfile into master
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 21e120de07 - Show all commits

@ -2,11 +2,11 @@ import * as Sentry from "@sentry/nextjs";
export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
await import("../sentry.server.config");
await import("../sentry.server.config.js");
}
if (process.env.NEXT_RUNTIME === "edge") {
await import("../sentry.edge.config");
await import("../sentry.edge.config.js");
}
}

@ -10,8 +10,8 @@
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
@ -24,7 +24,7 @@
"preserveWatchOutput": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
"@/*": ["./src/*.ts", "./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "tailwind.config.ts"],