DefinitelyTyped/vso-node-api/tsconfig.json
Mohamed Hegazy 2952469366 Add Q.try definition (#15161)
* Add Q.try defintion

* Persever q@0.0

* Depend on q@0.0

* Remove uneeded `/// <reference types="q" />`

* Use built-in Promise instead of Q.Promise

* Remove usused path mappings

* Use Q again

* Use global reference instead of path mapping for q

* Add dependncy on q@0.0

* Switch hystrixjs to a module

* Remove import when there is a triple-slash-reference-types in the index

* Use triple-slash-reference-types instead of path mapping

* Update version of Q to 1.0

* Switch the file to a module and use declare global

* Switch to a module

* use import instead of triple-slash-reference-types

* Do not use triple-slash-reference types

* Switch firebase-client to a module

* import q as a module

* use import for q
2017-03-14 18:21:24 -07:00

26 lines
533 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"paths": {
"q": [ "q/v0" ]
},
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"vso-node-api-tests.ts"
]
}