mongo/jsconfig.json
Alex Sarkesian c3c1ebb5ad SERVER-118538: Add jstests in modules to jsconfig (#47300)
GitOrigin-RevId: 0c3fe34897aee36c026c620c5174937e86df2671
2026-01-30 19:06:20 +00:00

20 lines
465 B
JSON

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