Files
gitbook/packages/openapi-parser/tsconfig.json
2025-02-13 16:30:34 +01:00

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