mirror of
https://github.com/iden3/js-crypto.git
synced 2026-01-09 13:58:00 -05:00
* ESM module migration * Update typescript * Add to bigInt function for PK * 1.2.0 * Format * Renaming. Fix lint * Update package version * Update package lock * Update package lock * Update package lock * add audited blake hash. Fix esm for node * Fixes
25 lines
495 B
JSON
25 lines
495 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022"],
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"outDir": "dist/node/esm",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"types"
|
|
]
|
|
}
|