@capimjs/library-auth
Version:
Professional API using Clean Architecture and TDD. to group validators
48 lines (47 loc) • 943 B
JSON
{
"ts-node": {
"swc": true
},
"compilerOptions": {
"incremental": true,
"outDir": "dist",
"rootDirs": [
"src",
"tests"
],
"declarationMap": false,
"declaration": true,
"target": "es2021",
"sourceMap": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"@/*": [
"./src/*"
],
"@/tests/*": [
"./tests/*"
]
},
"strict": true,
"noImplicitOverride": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"emitDeclarationOnly": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
},
"include": [
"src",
"tests",
"src/main/factories/infra/gateways/.ts",
"tests/application/controllers/.spec.ts"
],
"exclude": [
"./build"
]
}