uk-modulus-check
Version:
TypeScript class that validates UK bank account details using the modulus checking algorithm.
21 lines • 646 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2020", "DOM"],
"types": ["node", "jest"],
"typeRoots": ["./node_modules/@types"],
"declaration": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "scripts/dataLoader.js"]
}