mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@v2/*": ["./src/*"],
|
|
"@/*": ["../gitbook/src/*"]
|
|
},
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"../gitbook/types/**/*.d.ts",
|
|
"../gitbook/cf-env.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"packages/openapi-parser",
|
|
"packages/react-openapi",
|
|
"packages/react-math",
|
|
"packages/gitbook"
|
|
]
|
|
}
|