2019-04-26 10:59:51 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
2022-06-21 11:00:21 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
2019-04-26 10:59:51 +00:00
|
|
|
"outDir": "./dist",
|
2021-12-09 12:44:42 +00:00
|
|
|
/* https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */
|
2023-03-12 05:51:10 +00:00
|
|
|
"target": "es2022",
|
2019-04-26 10:59:51 +00:00
|
|
|
"module": "commonjs",
|
2019-05-16 16:54:54 +00:00
|
|
|
"sourceMap": true,
|
2019-05-15 13:40:29 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2019-07-17 08:14:56 +00:00
|
|
|
"resolveJsonModule": false,
|
2020-08-19 04:46:00 +00:00
|
|
|
"noUnusedLocals": true,
|
2021-08-23 20:50:37 +00:00
|
|
|
"noImplicitOverride": true,
|
2021-06-07 16:28:05 +00:00
|
|
|
"experimentalDecorators": true,
|
2021-09-03 10:19:46 +00:00
|
|
|
"useUnknownInCatchVariables": false /* we aren't prepared for enabling this by default since ts 4.4*/,
|
2021-12-22 07:43:26 +00:00
|
|
|
"isolatedModules": true /* required for esbuild */,
|
2023-03-12 05:51:10 +00:00
|
|
|
"lib": ["es2022"],
|
2022-09-12 14:58:52 +00:00
|
|
|
"types": ["node", "jest-extended", "expect-more-jest"],
|
2020-03-24 06:17:59 +00:00
|
|
|
"allowJs": true,
|
2022-02-07 06:37:17 +00:00
|
|
|
"checkJs": true,
|
|
|
|
"importsNotUsedAsValues": "error"
|
2019-04-26 10:59:51 +00:00
|
|
|
},
|
2022-02-11 07:51:51 +00:00
|
|
|
"include": ["**/*.ts", "**/*.js", "**/*.mjs", "**/*.cjs"],
|
2020-03-24 06:17:59 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"./.cache",
|
|
|
|
"./dist",
|
|
|
|
"**/__mocks__/*",
|
|
|
|
"coverage",
|
2020-04-02 04:01:31 +00:00
|
|
|
"config.js",
|
|
|
|
"tmp"
|
2020-03-24 06:17:59 +00:00
|
|
|
]
|
2019-04-26 10:59:51 +00:00
|
|
|
}
|