mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
* 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
27 lines
575 B
JSON
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"
|
|
]
|
|
}
|