Co-authored-by: Steve McClure <steve.mcclure@mongodb.com> Co-authored-by: Teo Voinea <teo.voinea@mongodb.com> GitOrigin-RevId: e91b166957c79f6576efe2c6fbf6d796a9636905
28 lines
688 B
JSON
28 lines
688 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"disableSizeLimit": true,
|
|
"target": "ES2020",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"std:*": [
|
|
"src/mongo/shell/std/*"
|
|
]
|
|
}
|
|
},
|
|
"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/mongo/shell/std/**/*.js",
|
|
"src/mongo/shell/std/**/*.d.ts",
|
|
"src/third_party/fast_check/**/*"
|
|
],
|
|
"exclude": [
|
|
"jstests/libs/override_methods/"
|
|
]
|
|
}
|