DefinitelyTyped/types/openid-client/tsconfig.json
ulrichb 3daa27e206 Initial typings for 'openid-client' (#35412)
* Initial typings for 'openid-client'

* Update tsconfig.json

* Fix linter errors
2019-05-14 14:44:51 -07:00

24 lines
494 B
JSON

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