@mercury-labs/auth
Version:
Mercury framework auth library. It supports local auth, jwt with both bearer token and cookie, basic auth.
38 lines (37 loc) • 820 B
JSON
{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "es2019",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"inlineSources": false,
"allowJs": false,
"outDir": "./dist",
"baseUrl": "./",
"lib": [
"ES2019"
],
"esModuleInterop": true,
"noUnusedLocals": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"test",
"dist"
]
}