Files
gitbook/packages/openapi-parser/tsconfig.json
2025-02-26 17:59:34 +01:00

18 lines
522 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,
"types": [
"bun-types" // add Bun global
]
},
"include": ["src/**/*.ts"]
}