2019-08-03 21:34:59 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-07-24 02:09:34 +05:30
|
|
|
"target": "ES2022" /* Emit ES2022-compatible JavaScript. */,
|
|
|
|
|
"module": "NodeNext" /* Use Node.js ESM module semantics. */,
|
|
|
|
|
"moduleResolution": "NodeNext" /* Resolve modules using Node.js ESM rules. */,
|
2021-01-16 14:28:29 +01:00
|
|
|
"outDir": "./lib" /* Redirect output structure to the directory. */,
|
2026-07-24 02:09:34 +05:30
|
|
|
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
|
2021-01-16 14:28:29 +01:00
|
|
|
"strict": true /* Enable all strict type-checking options. */,
|
2026-07-24 02:09:34 +05:30
|
|
|
"isolatedModules": true /* Improve compatibility with the NodeNext Jest/ts-jest pipeline. */,
|
2023-01-17 10:54:58 +02:00
|
|
|
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
|
|
|
|
"useUnknownInCatchVariables": false /* Default catch clause variables as 'unknown' instead of 'any'. */
|
2020-05-11 10:46:03 -04:00
|
|
|
//"sourceMap": true
|
2019-08-03 21:34:59 -04:00
|
|
|
},
|
2026-07-24 02:09:34 +05:30
|
|
|
"exclude": ["__tests__", "jest.config.ts"]
|
2021-01-16 14:28:29 +01:00
|
|
|
}
|