@fbltd/async
Version:
Miscellaneous async utils
38 lines (34 loc) • 1.01 kB
JSON
// @formatter:off
{
"compilerOptions": {
// syntax
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"allowJs": false,
// emit
"rewriteRelativeImportExtensions": true,
"target": "ESNext",
"noEmitOnError": true,
"removeComments": false,
"outDir": "dist/bin",
"declaration": true,
"declarationDir": "dist/types",
"declarationMap": false, // Typically, source files are not emits, so there is no reason to emit source maps
"sourceMap": false // Typically, source files are not emits, so there is no reason to emit source maps
},
"exclude": [
"./node_modules/",
"./dist/",
"./__tests__",
]
}
// @formatter:on