mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 05:48:57 +00:00
19 lines
586 B
JSON
19 lines
586 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": ["@tsconfig/strictest/tsconfig.json", "@tsconfig/node20/tsconfig.json"],
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"noEmit": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
]
|
|
},
|
|
"include": ["types/**/*.d.ts", "src/**/*.ts"]
|
|
}
|