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