- Moved mappings into Sb1 impl - Moved Actual types to @common - Moved createDirIfMissing to respective functions - Refactored main into multiple functions - Moved create db into Sb1impl and close - Log requests on info
22 lines
605 B
JSON
22 lines
605 B
JSON
{
|
|
"include": ["./src/**/*.ts", "./packages/**/*.ts", "./tests/**/*.ts"],
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@common/*": ["./packages/common/*"],
|
|
"@sb1/*": ["./packages/sparebank1Api/*"],
|
|
"@sb1impl/*": ["./packages/sparebank1/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "./*.ts", "__test__"]
|
|
}
|