- Created common workspace - Create Sparebank1Api workspace - Moved logger to common - Moved SB1 types to types.ts - Logger will avoid duplicating first line when capturing console.logs - Updated imports and added type keyword - Added nonUniqueId type
21 lines
534 B
JSON
21 lines
534 B
JSON
{
|
|
"include": ["./src/**/*.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/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "./*.ts", "__test__"]
|
|
}
|