All checks were successful
Deploy application / deploy (push) Successful in 10s
21 lines
556 B
JSON
21 lines
556 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/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "./*.ts", "__test__"]
|
|
}
|