@nevware21/ts-async
Version:
support for asynchronous development with a Promise based task Scheduler, several different Promise implementations (synchronous, idle, asynchronous and native runtime wrappers), await helpers, and aliases all built and tested using TypeScript.
25 lines • 661 B
JSON
{
"compilerOptions": {
"sourceMap": true,
"inlineSources": true,
"noImplicitAny": true,
"module": "es6",
"moduleResolution": "node",
"target": "es5",
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmitHelpers": false,
"alwaysStrict": true,
"declaration": false,
"outDir": "./build/base",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"removeComments": true
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"node_modules/"
]
}