mirror of
https://github.com/iden3/js-crypto.git
synced 2026-01-13 07:48:01 -05:00
25 lines
468 B
JSON
25 lines
468 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "esnext",
|
|
"module": "es6",
|
|
"lib": ["esnext"],
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"declarationDir": "dist/types",
|
|
"outDir": "dist/cjs",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|