DefinitelyTyped/types/adal-angular/tsconfig.json
Anthony Ciccarello 6e26904116 use npm export syntax in adal-angular (#24727)
* (adal-angular) export AuthenticationContext as module

* add adal-angular properties and tests

* add adal-angular properties and tests

* add response type property

* fix testing errors

* add esModuleInterop support
2018-04-11 11:57:04 -07:00

26 lines
545 B
JSON

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