jwt-logout-app
Version:
A JWT Logout app that maitaines a dictionary of JWTs mapped to a userid which can then be used for performig logout when using JWT for sign-in
20 lines • 448 B
JSON
{
"extends": "tslint-config-airbnb",
"trailing-comma": [true, {
"singleline": "never",
"multiline": {
"objects": "never",
"arrays": "never",
"functions": "never",
"typeLiterals": "never"
}
}],
"linterOptions": {
"exclude": [
"bin",
"lib/*generated.js",
"*.json",
"src/config/*.json"
]
}
}