21 lines
534 B
JSON
Raw Normal View History

2024-11-15 22:55:53 +01:00
{
"include": ["./src/**/*.ts", "./tests/**/*.ts"],
2024-11-15 22:55:53 +01:00
"compilerOptions": {
"target": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"noEmit": true,
2024-11-15 22:55:53 +01:00
"paths": {
"@/*": ["./src/*"],
"@common/*": ["./packages/common/*"],
"@sb1/*": ["./packages/sparebank1Api/*"]
2024-11-15 22:55:53 +01:00
}
2024-12-16 21:25:36 +00:00
},
"exclude": ["node_modules", "./*.ts", "__test__"]
2024-11-15 22:55:53 +01:00
}