1f09fc7124
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eden Zimbelman <[email protected]>
29 lines
611 B
JSON
29 lines
611 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"checkJs": true,
|
|
"types": ["node"],
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"target": "ESNext"
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"src/**/*.js"
|
|
],
|
|
"jsdoc": {
|
|
"out": "support/jsdoc",
|
|
"access": "public"
|
|
}
|
|
}
|