DefinitelyTyped/types/bent/tsconfig.json
Michael Mitchell 79611a24f4 [bent] Add definitions (#39254)
* [bent] Add definitions

* [bent] Add overloads for specific option orders

* [bent] Remove redundant union from url overloads
2019-10-28 10:59:44 -07:00

26 lines
537 B
JSON

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