DefinitelyTyped/angular-oauth2/tsconfig.json
denisname f4fdcaca9c jQuery improve typing (#15102)
* jQuery improve typing

Each callback returns nothing or boolean
Each return its first argument

isArray, isFunction and isWindow as type guards

type has a more strict return type

make unique generic functions

* Add libs in angular-oauth2 tsconfig

* Linting angular-oauth2
2017-03-10 14:21:11 -08:00

25 lines
502 B
JSON

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