DefinitelyTyped/types/oauth/tsconfig.json
Sine 81d0e4984d Added type definitions for 'oauth' (a.k.a. 'node-oauth') (#24882)
* added declarations for oauth (a.k.a. 'node-oauth')

* fixed tsconfig.json

* cleaned up unecessary dependency on new TS version
2018-04-10 13:42:47 -07:00

24 lines
486 B
JSON

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