Files
DefinitelyTyped/types/fibers/tsconfig.json
Chigozirim C 8e851d8433 [@types/fibers] Upgrade types for node-fibers (#38143)
* Update fibers types

* Move tests to a folder

* comment out the unused types

* Change futurefunction

* Update typescript version

* Change imports

* House cleaning of fiber types

* Remove default types

* enable dt-header linter rule

* Enable full linter

* Enabled all necessary lint rules and fixed errors
2019-10-28 14:10:53 -07:00

27 lines
575 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6","dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"esModuleInterop": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"future.d.ts",
"test/fibers.ts",
"test/futures.ts"
]
}