mirror of
https://github.com/vercel/turborepo.git
synced 2025-12-23 09:19:46 +00:00
### Description Unpins the `next` dependency in the `basic` example. ### Testing Instructions `npx create-turbo -e https://github.com/vercel/turborepo/tree/shew-c50d5/examples/basic -m npm`
20 lines
304 B
JSON
20 lines
304 B
JSON
{
|
|
"extends": "@repo/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"next-env.d.ts",
|
|
"next.config.js",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|