What: - Setups the skeleton for pricing module - Creates service/model/repository for currency model - Setups types - Setups DB - Moved some utils to a common place RESOLVES CORE-1477 RESOLVES CORE-1476
37 lines
887 B
JSON
37 lines
887 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"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"dist",
|
|
"./src/**/__tests__",
|
|
"./src/**/__mocks__",
|
|
"./src/**/__fixtures__",
|
|
"node_modules"
|
|
]
|
|
}
|