79 lines
1.5 KiB
JSON
79 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"ES2021"
|
|
],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
],
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
],
|
|
"@controllers/*": [
|
|
"./controllers/*"
|
|
],
|
|
"@middlewares/*": [
|
|
"./middlewares/*"
|
|
],
|
|
"@services/*": [
|
|
"./services/*"
|
|
],
|
|
"@models/*": [
|
|
"./models/*"
|
|
],
|
|
"@routes/*": [
|
|
"./routes/*"
|
|
],
|
|
"@validators/*": [
|
|
"./validators/*"
|
|
],
|
|
"@utils/*": [
|
|
"./utils/*"
|
|
],
|
|
"@types/*": [
|
|
"./types/*"
|
|
],
|
|
"@config/*": [
|
|
"./config/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"tests",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"src/migrations"
|
|
]
|
|
} |