ts-combinatorics
Version:
Simple combinatorics like power set, combination, and permutation in JavaScript
23 lines (22 loc) • 629 B
JSON
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"lib": ["dom", "es2019"],
"inlineSourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "node",
"declaration": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"strict": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true
},
"files": ["./src/main.ts"]
}