51 lines
1008 B
JSON
51 lines
1008 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"target": "es2020",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": false,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true,
|
|
// to use ES5 specific tooling
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@models": [
|
|
"./src/models"
|
|
],
|
|
"@services": [
|
|
"./src/services"
|
|
],
|
|
"@repositories": [
|
|
"./src/repositories"
|
|
],
|
|
"@types": [
|
|
"./src/types"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"./src/**/__tests__",
|
|
"./src/**/__mocks__",
|
|
"./src/**/__fixtures__",
|
|
"node_modules"
|
|
]
|
|
}
|