forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (27 loc) · 824 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"composite": true,
"declaration": true,
"emitDeclarationOnly": true,
"importsNotUsedAsValues": "error",
"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,
// TODO: remove for Jest 30
"ignoreDeprecations": "5.0"
}
}