mirror of
https://github.com/iden3/js-iden3-core.git
synced 2026-01-08 21:37:58 -05:00
20 lines
471 B
JSON
20 lines
471 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"]
|
|
}
|