mongo/jsconfig.json
Steve McClure 9661e67028 SERVER-103603: Support .d.ts typings for common "conn" and "db" workflows (#35071)
GitOrigin-RevId: cce8abff91406ea4ed5be849ea3e041b4ac0bc86
2025-04-16 20:01:24 +00:00

19 lines
414 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"disableSizeLimit": true,
"target": "ES2020"
},
"include": [
"jstests/**/*.js",
"jstests/**/*.d.ts",
"src/mongo/scripting/**/*.d.ts",
"src/mongo/shell/*.js",
"src/mongo/shell/*.d.ts",
"src/third_party/fast_check/**/*"
],
"exclude": [
"jstests/libs/override_methods/"
]
}