DefinitelyTyped/types/got/tsconfig.json
Dimitri Benin 02c08f6a5d [got] introduce typings (#18309)
* [got] introduce typings

* [got] shorten typings as suggested by review

* [got] account for changed node typings

* [got] refactor so that delete call is provided

* [got] cut down even more on duplication, remove stale comments

* [got] further deduplicate
2017-07-24 16:01:58 -07:00

24 lines
466 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"got-tests.ts"
]
}