56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": [
|
||
|
|
"ES2020"
|
||
|
|
],
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
/* Type Checking */
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
/* Output */
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"sourceMap": true,
|
||
|
|
"declaration": true,
|
||
|
|
/* Path Aliases */
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"src/*"
|
||
|
|
],
|
||
|
|
"@config/*": [
|
||
|
|
"src/config/*"
|
||
|
|
],
|
||
|
|
"@controllers/*": [
|
||
|
|
"src/controllers/*"
|
||
|
|
],
|
||
|
|
"@services/*": [
|
||
|
|
"src/services/*"
|
||
|
|
],
|
||
|
|
"@models/*": [
|
||
|
|
"src/models/*"
|
||
|
|
],
|
||
|
|
"@middlewares/*": [
|
||
|
|
"src/middlewares/*"
|
||
|
|
],
|
||
|
|
"@helpers/*": [
|
||
|
|
"src/helpers/*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
]
|
||
|
|
}
|