Files
stale/tsconfig.json
T

16 lines
983 B
JSON
Raw Normal View History

2019-08-03 21:34:59 -04:00
{
"compilerOptions": {
"target": "ES2022" /* Emit ES2022-compatible JavaScript. */,
"module": "NodeNext" /* Use Node.js ESM module semantics. */,
"moduleResolution": "NodeNext" /* Resolve modules using Node.js ESM rules. */,
"outDir": "./lib" /* Redirect output structure to the directory. */,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
"strict": true /* Enable all strict type-checking options. */,
"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'. */
//"sourceMap": true
2019-08-03 21:34:59 -04:00
},
"exclude": ["__tests__", "jest.config.ts"]
}