- Added some configuration and running to README - Refactored some code - Fixed exception when stopping a start-once script - Only allow running with pnpm - Moved transactions into sparebank1Api.ts - Formatted
18 lines
422 B
JSON
18 lines
422 B
JSON
{
|
|
"include": ["./src/**/*.ts", "./tests/**/*.ts"],
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "./*.ts", "__test__"]
|
|
}
|