Files
js-crypto/tsconfig.json
Dimasik Kolezhniuk 116bdb3a57 ESM module migration (#21)
* 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
2025-02-18 14:31:36 +01:00

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"
]
}