2022-09-09 09:00:18 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2019",
|
2022-10-26 02:55:39 -07:00
|
|
|
"lib": ["es2019", "es2020", "es2022.error"],
|
2022-09-09 09:00:18 -07:00
|
|
|
"removeComments": true,
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": true,
|
|
|
|
"declaration": true,
|
2022-10-05 04:36:09 -07:00
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true
|
2022-09-09 09:00:18 -07:00
|
|
|
},
|
2023-05-05 08:50:10 -07:00
|
|
|
"exclude": ["**/dist/**/*", "**/node_modules/**/*"],
|
|
|
|
"files": ["node_modules/jest-expect-message/types/index.d.ts"]
|
2022-09-09 09:00:18 -07:00
|
|
|
}
|