turborepo/examples/basic/apps/docs/tsconfig.json
Anthony Shew b79e06e2a5
fix(examples): create-turbo dependencies with npm (#9580)
### 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`
2024-12-06 12:12:31 -06:00

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"
]
}