mirror of https://github.com/facebook/jest.git
28 lines
722 B
JSON
28 lines
722 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"stripInternal": true,
|
|
|
|
"strict": true,
|
|
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* This needs to be false so our types are possible to consume without setting this */
|
|
"esModuleInterop": false,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": false,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|