SERVER-95506: jsconfig.json should include files rather than exclude them. (#27790)

GitOrigin-RevId: d1458aa7e3eb539ea9a9b31cdf7fdd04980231a5
This commit is contained in:
kshitij 2024-10-14 16:57:09 -04:00 committed by MongoDB Bot
parent ccd2cd11ec
commit f7fbfe5564
1 changed files with 4 additions and 3 deletions

View File

@ -4,8 +4,9 @@
"disableSizeLimit": true,
"target": "ES2020"
},
"exclude": [
"node_modules",
"src/third_party"
"include": [
"jstests/**/*.js",
"src/mongo/shell/*.js",
"src/third_party/fast_check/**/*"
]
}